Skip to content
Advertisement

Looping input till condition is given

I’m a beginner currently working on a small python project. It’s a dice game in which there is player 1 and player 2. Players take turns to roll the dice and a game is 10 rounds in total(5 rounds for each player). The player with the highest number of points wins.

I am trying to validate the first input so that when for example, the player enters a number instead of “Higher” or “Lower”, the program should respond with ‘Invalid input, please respond with “Higher” or “Lower”’.

Here’s my code so far

JavaScript

The problem that occurs is that instead it print ‘invalid input’ regardless of whether the condition is true or not.

Advertisement

Answer

A value is always not equal one or another value.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement