cijfers in filenames

This commit is contained in:
Wannes-Sys 2023-06-11 21:43:04 +00:00
parent d7286ab985
commit 30687c38eb
1 changed files with 1 additions and 0 deletions

View File

@ -1,3 +1,4 @@
# python files kunnen niet met een cijfer beginnen voor zover ik weet, het kan moeilijk doen, vandaar de 'is'
print("0.1 + 0.2 = ", 0.1 + 0.2)
print("float(1) + float(2) = ", float(1) + float(2))
print(f"float(1) + float(2) = {float(1) + float(2):.36f}, nu met 36 cijfers")