Computer Science, asked by ProBroJokesMan, 9 months ago

ASAP FOR BRAINLIEST AND IRRELEVANCE WILL BE REPORTED To enter a string and display its length, print in uppercase, Capitalize it, slice it in 3 different words. ( string entered is : ‘tagore international school’

Answers

Answered by gaganadithyareddy9
0

Answer:

x = input("Enter a string: ")

print("Length = ", len(x))

print(x.upper())

print(x.title())

I didn't understand what you mean slice in three different words...

Ok Hope it helps you!!

Similar questions