Question: What does the following code display? name = 'joe' print(name.lower()) print(name.upper()) print(name)
What does the following code display?
name = 'joe'
print(name.lower())
print(name.upper())
print(name)
Step by Step Solution
3.28 Rating (154 Votes )
There are 3 Steps involved in it
The given code operates on the variable name and displays the following joe JOE joe Heres an expla... View full answer
Get step-by-step solutions from verified subject matter experts
