It would be awesome to support python3.6 f-strings, introduced [here](https://docs.python.org/3.6/reference/lexical_analysis.html#string-and-bytes-literals). For example: ``` name = 'paul' message = 'hello' str = f'{name} says {message}' ```