8 lines
110 B
Python
8 lines
110 B
Python
def toCapitalLetters(a):
|
|
x = a.upper()
|
|
print(x)
|
|
|
|
|
|
i = input('Enter any string: ')
|
|
toCapitalLetters(i)
|