0
When trying to code i get a message saying '>=' is not rep. between instances of string and integer..how can i fix this
3 Respuestas
+ 6
Either convert both to string or both to int
using str(value) and int(value)
+ 1
How can you compare banana with sunglasses?
To compare something with another thing both must be same type right?
string and integer are different type!
+ 1
Abhay thanks