Q. Consider the following code segment:
a = input()
b = int(input())
c = a + b
print(c)
When the program is run, the user first enters 10 and then 5, it gives an error. Find the error, its reason and correct it.
Answer =
Correct program:-
a = int (input())
b = int(input())
c = a + b
print(c)
Reason:- string value and integer value cannot add.
PODU ORU AD2
ReplyDeleteshimon..
Deletesuper da
ReplyDeleteHI SIVA
ReplyDeletei its me haerini
DeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )