6 lines
86 B
Python
6 lines
86 B
Python
name = "albert einstein"
|
|
print(name.upper())
|
|
print(name.lower())
|
|
print(name.title())
|
|
|