Files
python-examples/src0/datatypes.py
2025-01-09 14:30:26 +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)