Teile 10 bis 12.

This commit is contained in:
2023-03-28 12:26:50 +02:00
parent 298151634d
commit f7a5db9f39
27 changed files with 6459 additions and 75 deletions

9
teil11/currentdate.py Normal file
View File

@@ -0,0 +1,9 @@
from datetime import datetime
heute = datetime.now()
print(type(heute))
print(heute)
print(heute.time())
print(heute.date())