Computer Science, asked by tushar5112002, 5 months ago

Correct the following code fragment :
Ht num=10:
print(number is equal to 10)
orint number is not equal to 10)​

Answers

Answered by rohitkhajuria90
0

Error in code, syntax is not correct and keywords are also not written properly

However,

num =10

print(num is 10)

print(num is not 10)

Will gives you

True

False

Similar questions