Computer Science, asked by agfsfdsg, 7 months ago

Write a python script in python asking users for a string and then print it in all uppercase.

Answers

Answered by starchild
2

Answer:

s=input('Enter a string: ')

print('String in Upper case: ',s.upper())

Similar questions