Python Forum
Hello need some help with some code!
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hello need some help with some code!
#4
you should use a functions like this -
def name():
    name_program = input("Please enter you name: ")
    return name_program

def age(repeat):
    if not repeat:
        age_program = input("Please enter your age: " )
        return age_program
    else:
        age_program = input("Then what is it again? " )
        return age_program

def country():
    country_program = input("Please enter you location: ")
    return country_program

def Main():
    name_program = name()
    age_program = age(False)
    print("Hello " + name_program + " so your " + age_program + " years old?")
    while True:
        yes_no_program = input("yes or no? ")
        if yes_no_program == "yes":
            print("Wow that's great")
            break
        elif yes_no_program == "no":
            age_program = age(True)
            print("Hello %s, so your %s years old" %(name_program, age_program))
     
    print("anyways")
    country_program = country()
    print("so you come from " + country_program + " heard it's a nice place")

Main()
Reply


Messages In This Thread
RE: Hello need some help with some code! - by Yoriz - Apr-21-2019, 05:22 PM
RE: Hello need some help with some code! - by SheeppOSU - Apr-21-2019, 05:24 PM

Forum Jump:

User Panel Messages

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