6. What is the output of the following python programs a. print("Welcome", \n, "Students") b. a=10 b=20 if a>b: print("A is largest") else: print("B is largest")
Answers
Answered by
1
Answer:
OUTPUT:-
WELCOME
STUDENTS
False
B is largest
Similar questions