Computer Science, asked by aaseshan123, 4 months ago

def check(value):
if(value==100);
print("value is 100")
else:
print("incorrect value")
>>>check(100
what is output of the given code​

Answers

Answered by candidkhushi
0

Answer:

your code is wrong !!!

Explanation:  so this is the corrected code

def check():

a=int(input("enter the value"))

if(a==100):

   print("value is 100")

else:

   print("incorrect value")

check()

Similar questions