Computer Science, asked by satavisha44, 5 months ago

Write a correct output of following Python Programming code.


print ("Such as")

#print("Take every chance.")

print("Drop every fear. ")​

Answers

Answered by Anonymous
1

Answer:

Such as

Drop every fear.

Explanation:

middle line will not be printed as it starts with #

# is use for commenting

Answered by zezus
0

Answer:

in python if we want to print something then we have to write print ("sentence") this code then the output is sentence

so

if we type

print ("such as ")

output : such as

in python # mean comment so # dont give any output on programme

print ("drop every fear ")

output : drop every fear

Similar questions