The following code is not giving the desired output. We want to input the
value as 25 and obtain the output as 50. What is wrong with this code.
Underline each wrong statement and rewrite the program after removing all
the errors.
Num=input(“Enter a number=”)
num * 2 = result
Print [ Result ]
Answers
Answered by
3
num = int(input("Enter a number: "))
result = num * 2
print(result)
Answered by
0
Answer:
NUm =input(''
Explanation:
no results about it in my brain
Similar questions