Computer Science, asked by vaibhavpick466, 11 months ago

find the output of ( python programming)

str = "hello"
str = "world"​

Answers

Answered by yasirsahibzada
0

Answer:

hello

world

Explanation:

str = "hello"

print(str)

str = "world"

print(str)

Similar questions