IDNLearn.com provides a comprehensive platform for finding accurate answers. Whether it's a simple query or a complex problem, our experts have the answers you need.

Question: 2
What does the following Python program print?

x = "I am"
y = 6
z = "feet tall"

print(x)
print(y)
print(z)


I am 6 feet tall


I am6feet tall


I am
6
feet tall


x
y


Sagot :

Answer:

I am

6

feet tall

Explanation:

Each print statement prints on a new line.

“I am
6
Feet tall”
There is the answer