2025-01-09T14:30:26

This commit is contained in:
2025-01-09 14:30:26 +09:00
parent 90d9816ea2
commit a6be4b4c30
18 changed files with 941 additions and 0 deletions

5
src0/datatypes.py Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/python
table = str.maketrans('aeiou', 'AEIOU')
a = 'i like an apple'.translate(table)
print(a)