mirror of
https://github.com/BreizhHardware/py_CIPA3.git
synced 2026-01-18 16:37:30 +01:00
7 lines
126 B
Python
7 lines
126 B
Python
if __name__ == '__main__':
|
|
a='1'
|
|
b=int(a)
|
|
print(type(a))
|
|
print(type(b))
|
|
print(ord('a'))
|
|
print(chr(97)) |