What is the output of the following code?
class="Gradell students”
print("Hello”, end=' ,sep='$')
print(class)
print(“Bye”)
Answers
Answered by
1
Answer:
actually in 2nd line the code is wrong and the output is:
Hello $
Gradell students
Bye
Similar questions