Computer Science, asked by ProBroJokesMan, 8 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 armaansharma85
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 gaganadithyareddy9
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