Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by RAH S

  1. RAH S

    Python Why does this If Else statement not working in Python?

    The Issue is still the same. If you say 5 - it says go lower then 3 - it says go higher and finally 4 - it says that the answer is four but you took too long even though it was only 3 guesses. BTW - Setting guesses to 0 before the while loop gives you 4 guesses for some reason.
  2. RAH S

    Python Why does this If Else statement not working in Python?

    I have changed the code a bit: import turtle import random import time def death(): print("You have lost to one the dungeons scourges and are now in the darklands") time.sleep(3) quit() def dragon(): print() print("You hear a roar coming from the tunnel behind where...
  3. RAH S

    Android Studio says "The Flutter SDK is incomplete".

    Thank you very much. I have been trying for ages and it did not work but your fix was perfect. 👍
  4. RAH S

    Android Studio says "The Flutter SDK is incomplete".

    I have tries redownloading and moving location already, it doesn't work.
  5. RAH S

    Android Studio says "The Flutter SDK is incomplete".

    When I try to create a new flutter project in Android Studio, it says that "The Flutter SDK is incomplete" after I specify the SDK. The Next button is also greyed out so I can't continue either. I have followed all the instructions on the flutter.dev website and installed the Flutter and...
  6. RAH S

    Python Why does this If Else statement not working in Python?

    I've tried this but then it gives the user 4 tries instead of 3
  7. RAH S

    Python Why does this If Else statement not working in Python?

    I have the following code randomNum = random.randint(1,10) number = input("To enter the land you must guess my number in 3 guesses or be taken to the darklands: ") guesses = 1 while guesses != 3: print() guesses = guesses + 1 number =...
Back
Top Bottom