1. Write down the output of the following python code –
L=”python”
for i in L:
if i==’h’:
break
print(“The current letter is “, i)
Answers
Answered by
1
Answer:
python image and the current letter
Answered by
1
Answer:
The current letter is p
The current letter is y
The current letter is t
Similar questions