0
Complete the code to check if the player complete the level
Coins=36 Keys=2 Print(coins>30___keys>0)
1 Answer
+ 3
If it is necessary for the player to collect more than 30 coins and keys, you need to write 'and'. If you want the player to either collect 30 or more coins, or keys, then you need to write 'or'. In your case, both options will output 'true'.