6 lines
91 B
Python
6 lines
91 B
Python
import datetime
|
|
|
|
print(datetime.date.today())
|
|
|
|
for i in range(10):
|
|
print("Hello world") |