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
0
All the uppercase letters come before all the lowercase letters. See this example of taking a string input of numbers...pls mark me as brainliest
Answered by
0
Answer:
Hey! This is in python...
str = input("Enter a string: ")
print("String in uppercase: ", str.upper())
print("Capitalizing the string: ", str.title())
for i in str:
print(i, end=', '))
# HOPE THIS HELPS YOU!!
Similar questions