Q2) What will be the output of the following code:
1
age=45
If age >=18
print(“you can vote”)
else
print(" you Can not vote“)
Answers
Answered by
0
Answer:
whattttttttttttttttttttttt
Answered by
0
Answer:
You Can vote
Explanation:
here is age=45
when code performing task as if condition. then 48 >= 18 true. so that print you can vote.
suppose
if age=17 then 17 >= 18 fulse so that directly print you Can not vote
Similar questions