write the output of :- a=10 if (a<15) print ("welcome to virtual world") else ("welcome to real world")
Answers
Answered by
1
Answer:
Welcome to the virtual world
Explanation:
Its because when you created variable called a which contains integer 10. Now, you are running if condition which means if(a<15): print(Welcome to virtual world) and the variable a is less than 15 so Welcome to virtual world will be the answer
Similar questions