first commit

This commit is contained in:
2025-02-25 09:50:35 +01:00
commit f1c5e3b169

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
if __name__ == '__main__':
a='1'
b=int(a)
print(type(a))
print(type(b))
print(ord('a'))
print(chr(97))