Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Absolute Beginner to Python
#1
I am an absolute beginner to python. I am learning through CodeHS. I cannot figure what I'm doing wrong with a particular assignment. It's the Guess the Secret Number assignment. I feel like I've done everything the way the sample says to do it, but it won't work. Please HELP!
speed(0)

secret_number = 7

def make_check(user_number):
    color("green")
    left(135)
    pensize(10)
    forward(30)
    backward(30)
    right(90)
    forward(60) 
  
user_number=int(input("What is the secret number? (1-10) "))

while user_number == secret_number:
    make_check(user_number)
    user_number=int(input("What is the secret number? (1-10) "))
Reply


Messages In This Thread
Absolute Beginner to Python - by dthomp54 - Oct-08-2018, 06:26 PM
RE: Absolute Beginner to Python - by woooee - Oct-08-2018, 07:04 PM
RE: Absolute Beginner to Python - by j.crater - Oct-08-2018, 07:08 PM
RE: Absolute Beginner to Python - by dthomp54 - Oct-08-2018, 07:56 PM
RE: Absolute Beginner to Python - by ichabod801 - Oct-08-2018, 08:28 PM
RE: Absolute Beginner to Python - by dthomp54 - Oct-09-2018, 03:00 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Absolute paths in subprocess - file not found kittyticker 4 625 Jan-28-2024, 10:37 PM
Last Post: kittyticker
  automatically get absolute paths oclmedyb 1 2,167 Mar-11-2021, 04:31 PM
Last Post: deanhystad
  Absolute beginner am I missing something? kamren 7 3,268 Sep-25-2020, 05:32 AM
Last Post: buran
  chkFile with absolute paths JarredAwesome 7 3,093 Sep-21-2020, 03:51 AM
Last Post: bowlofred
  absolute imports between folders mikisDW 0 1,590 Aug-05-2020, 12:26 PM
Last Post: mikisDW
  I am an absolute newbie.Help me! feynarun 4 2,585 Apr-11-2020, 09:25 PM
Last Post: feynarun
  Absolute newbie asking for help with blinking LEDs misterfrickel 0 2,105 Mar-15-2019, 08:54 AM
Last Post: misterfrickel
  Absolute Beginner Python Question matchamochi7 5 3,747 Nov-02-2018, 12:09 PM
Last Post: wookie
  Problem with absolute path to file (Mr.Stickman Problems) SheeppOSU 3 6,299 Jun-26-2018, 10:05 AM
Last Post: Larz60+
  coding error from a script (absolute noob) fuchls 2 3,964 Jun-08-2018, 02:29 PM
Last Post: webrunner1981

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020