Zeitberechnung korrigiert

This commit is contained in:
klaas 2024-09-24 16:16:54 +02:00
parent edb3e0c86f
commit 9ea31935b7
1 changed files with 3 additions and 2 deletions

View File

@ -61,8 +61,9 @@ def main():
else:
print("Nope!")
time1 = time.time()
print(f"{tstart} - {time1} * {time.CLOCKS_PER_SEC}")
time1 = time.time() - tstart
print(f"{time1}")
if __name__ == "__main__":
main()