I'm sure my question isn't the smartest question, however, I'm trying to learn some python and had a question about a really small "program" I made as a test.
a = input()
print(a)
b = '10'
if a == b:
print("Yes")
else:
print("No")
This works, but my question is why does the value for b have to have the quotes around it. Again, stupidly minor question, but I'm curious if someone is willing to help.