Question: Consider the following code: def tryIt ( s ) : temp = for i in range ( len ( s ) ) :

Consider the following code:
def tryIt(s):
temp =""
for i in range(len(s)):
if(s[i]=="e"):
temp = temp +"X"
elif(s[i]=="t"):
temp = temp +"2"
else:
temp = temp + s[i]
print (temp)
# ********** MAIN **********
f ="to be or not to be"
tryIt(f)
What is output?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!