Forwarded from Nest4Code
Forwarded from Nest4Code
What will be output of this program?
a=input("Enter a")
b=input("Enter b") c = a+b print(c) During run: Enter a:1 Enter b:2
a=input("Enter a")
b=input("Enter b") c = a+b print(c) During run: Enter a:1 Enter b:2
Anonymous Quiz
66%
3
27%
12
4%
21
2%
2
Join the discussion group also for questions and quiz discussion. @pythonquestiondiscussion
Don't miss out the discussion group for questions and quiz discussion. @pythonquestiondiscussion
Forwarded from Nest4Code
What will be output of this program?
num=input("Enter numbers")
numbers = num.split('',") sum=numbers[1] + numbers[0] print(sum) What will be the output if input provided as below? Enter numbers1 2,3 4
num=input("Enter numbers")
numbers = num.split('',") sum=numbers[1] + numbers[0] print(sum) What will be the output if input provided as below? Enter numbers1 2,3 4
Anonymous Quiz
29%
1 23 4
24%
1234
10%
9
36%
3 41 2