Computer Science, asked by sahilbisht19339, 6 months ago

how to print any statement in python?​

Answers

Answered by Anonymous
0

Answer:

Python print()

objects - object to the printed. * indicates that there may be more than one object.

sep - objects are separated by sep. Default value: ' '

end - end is printed at last.

file - must be an object with write(string) method. If omitted it, sys. ...

flush - If True, the stream is forcibly flushed.

Answered by CoolTechyGuy
1

Answer:

So you go to your IDE and type:

Case 1:

print("Whatever you want to type here")

Case 2:

variable = "Whatever you want to type here"

print(variable)

I hope this helps!!

Similar questions