[ CMC ] Cryptosoldier
Angus McFife
Germany
from datetime import datetime

currentday = datetime.now().day
currentmonth = datetime.now().month
currentyear = datetime.now().year
currenthour = datetime.now().hour
currentminute = datetime.now().minute
currentsecond = datetime.now().second

print("Es ist der," + "\n" + str(currentday) + "." + str(currentmonth) + "." + str(currentyear) + "\n" + "und es ist," + "\n" + str(currenthour) + ":" + str(currentminute) +":" + str(currentsecond) + "uhr.")
from datetime import datetime

currentday = datetime.now().day
currentmonth = datetime.now().month
currentyear = datetime.now().year
currenthour = datetime.now().hour
currentminute = datetime.now().minute
currentsecond = datetime.now().second

print("Es ist der," + "\n" + str(currentday) + "." + str(currentmonth) + "." + str(currentyear) + "\n" + "und es ist," + "\n" + str(currenthour) + ":" + str(currentminute) +":" + str(currentsecond) + "uhr.")
Currently Offline