Skip to content

Commit bbd7f30

Browse files
committed
Adjustments on translations
1 parent b1096d5 commit bbd7f30

File tree

1 file changed

+7
-6
lines changed
  • docs/lessons/06-localization-translation

1 file changed

+7
-6
lines changed

docs/lessons/06-localization-translation/index.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,15 @@ We'll work with a command-line application that does nothing more than print som
3232
from datetime import date
3333

3434
if __name__ == '__main__':
35-
today = date.today()
36-
print(today)
35+
today = date.today()
36+
print(today)
3737

38-
number = 240000000000.32212
39-
print(number)
38+
number = 240000000000.32212
39+
print(number)
4040

41-
name = input('Input your name: ')
42-
print('Hello {}'.format(name))
41+
name = input('Input your name: ')
42+
print('Hello {}'.format(name))
43+
4344
```
4445

4546
A possible output would be

0 commit comments

Comments
 (0)