generated from justuser-31/code_projects_template
Решения на первый блок
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
day = int(input('Enter day of the month: '))
|
||||
month = input('Enter name of the month: ')
|
||||
year = int(input('Enter the year: '))
|
||||
|
||||
yyyy_mm_dd = f'{year}-{month}-{day}'
|
||||
dd_mm_yyyy = f'{day}-{month}-{year}'
|
||||
|
||||
print(f'''
|
||||
Result:
|
||||
yyyy_mm_dd: \t {yyyy_mm_dd}
|
||||
dd_mm_yyyy: \t {dd_mm_yyyy}
|
||||
''')
|
||||
Reference in New Issue
Block a user