Don't post wrong and spam plz
.
Question 2:- Write a basic program to make use of the end key and display the message "Hello" "0RPS0" and "Good Bye" in one line.
Answers
Answered by
3
print ('Hello' , end=' ')
print ('0RPS0' , end=' ')
print ('Good Bye')
*Output*
Hello 0RPS0 Good Bye
Similar questions