Computer Science, asked by wertyuio67, 7 months ago

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

Answers

Answered by Anonymous
2

string = input("Enter String: ")

string = string.upper()

print(f"Here is the string in all upper cases: {string}")

Please Mark Brainliest

Similar questions