I'm a newbie. I want to put a condition on numbers. If I check one number, it works fine. But if I want it to return the same value for two differ)
for row in row2:
if int == 1:
return = "Music"
but I want to expand it further to include other numbers. So,
for row in row2:
if int == 1 , 2:
return = "Music"
I've also tried using or in the second option but it didn't work. Any help to check different integers to bring back a certain result would be great.