mattharrison / Tiny-Python-3.6-Notebook

This repository contains the text for the Tiny Python 3.6 Notebook.
1.35k stars 220 forks source link

Python 3.6 format string #17

Closed wizardforcel closed 6 years ago

wizardforcel commented 6 years ago
>>> name = 'Wizard'
>>> f'Hello, {name}!'
'Hello, Wizard!'

I found it's missed.

mattharrison commented 6 years ago

Not sure what this bug is. There is an example of f-strings in the String Formatting sectoin

wizardforcel commented 6 years ago

Sorry. I didn't notice it's in that section.