We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1096d5 commit bbd7f30Copy full SHA for bbd7f30
docs/lessons/06-localization-translation/index.md
@@ -32,14 +32,15 @@ We'll work with a command-line application that does nothing more than print som
32
from datetime import date
33
34
if __name__ == '__main__':
35
-today = date.today()
36
-print(today)
+ today = date.today()
+ print(today)
37
38
-number = 240000000000.32212
39
-print(number)
+ number = 240000000000.32212
+ print(number)
40
41
-name = input('Input your name: ')
42
-print('Hello {}'.format(name))
+ name = input('Input your name: ')
+ print('Hello {}'.format(name))
43
+
44
```
45
46
A possible output would be
0 commit comments