Robotics & Artificial Intelligence

Write a Python program to convert all the letters of a string in uppercase.

Python String Manipulation

3 Likes

Answer

name = "My name is Jack"
new_name = name.upper()
print(new_name)

Output

MY NAME IS JACK

Answered By

2 Likes


Related Questions