ord built-in function

This commit is contained in:
Mert Gör 🇹🇷 2023-05-20 16:23:33 +03:00
parent a98f3b67b4
commit ef0cac8835
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

2
ord.for.py Normal file
View File

@ -0,0 +1,2 @@
for i in range(ord('A'), ord('Z') + 1):
print(chr(i), end=' ')