Computer Science, asked by ashmalfoy2007, 4 months ago

which function in python displays the result of an expression after it has been processed

Answers

Answered by 2602alpha
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 brainlygirls78
0

Answer:

Explanation:

Seema won

b) Sania won

Similar questions