from time import *

def aktuelle_zeit():
    print(strftime("%d/%m/%Y %H:%M:%S", localtime()))

aktuelle_zeit()