From 6c85752ff317ac64097da5cc4b95e7c2771fb596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 13 Jun 2023 15:03:14 +0300 Subject: [PATCH] bytes --- python-temel/bytes.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 python-temel/bytes.py diff --git a/python-temel/bytes.py b/python-temel/bytes.py new file mode 100644 index 0000000..c5831ff --- /dev/null +++ b/python-temel/bytes.py @@ -0,0 +1,3 @@ +b = b'ankara' +for i in b: + print(i, type(i))