2023-02-25 01:48

This commit is contained in:
2023-02-25 01:48:44 +09:00
commit 90d9816ea2
9 changed files with 151 additions and 0 deletions

5
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)