4 lines
82 B
Python
4 lines
82 B
Python
name = "erich bachman"
|
|
print(name.upper())
|
|
print(name.lower())
|
|
print(name.title()) |