From f1c5e3b169291aedef00e56ed9ad81bdada64d88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= Date: Tue, 25 Feb 2025 09:50:35 +0100 Subject: [PATCH] first commit --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..bce355f --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +if __name__ == '__main__': + a='1' + b=int(a) + print(type(a)) + print(type(b)) + print(ord('a')) + print(chr(97)) \ No newline at end of file