What will be the output of the following code?
# print(“ Just like “)
print(“Hello! “, end = ‘ ‘)
print(“How are you?”)
print(“Are you from India”)
Answers
Answered by
0
Answer:
hello
how are you
are you from india
Explanation:
this is your output.
Similar questions