Python hlásí chybu, že můžu použít pouze celé číslo, příklad z návodu ale funguje i s tečkou
Ahoj, tento kód mi hlásí chybu: TypeError: an integer is required (got type str)
for file in os.listdir('/var/images'):
if file.endswith('.png'):
a = os.path.splitext(file)[0]
print(datetime.datetime.fromtimestamp(a))
Tento kód celé číslo nepoužívá a přesto žádnou chybu nevrací.
millseconds = 984567.224325
print(datetime.datetime.fromtimestamp(millseconds))
Jak to můžu opravit? Děkuji