which function in python displays the result of an expression after it has been processed
Answers
Answered by
2
Answer:
Examples of output with Python 2.x:
print "Hello"
print "Hello", "world" Separates the two words with a space.
print "Hello", 34. Prints elements of various data types, separating them by a space.
print "Hello " + 34. ...
print "Hello " + str(34) ...
print "Hello", ...
sys.stdout.write("Hello") ...
sys.stdout.write("Hello\n")
Answered by
0
Answer:
Explanation:
Seema won
b) Sania won
Similar questions