+ 1
Hii I just solved the popsicles coding challenge but there's something I don't understand. Can someone pls help me?
This code didn't work: siblings = int(input()) popsicles = int(input()) #your code goes here if popsicles%siblings=0: print("give away") else: print ("eat them yourself") but this did: siblings = int(input()) popsicles = int(input()) #your code goes here if popsicles%siblings>0: print("eat them yourself") else: print("give away") Why didn't the first code work?
3 Answers
+ 10
"=" is assignment,
"==" is the equality operator.
0
Ohh ok thank you!
0
Lets see the source code