Files
python-examples/datatypes.py
2023-02-25 01:48:44 +09:00

6 lines
107 B
Python
Executable File

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