Jul-30-2019, 12:56 PM
Hello, users of Python!
My name is Victor Puche, I'm a total noob at programming in Python. I'm trying to create a test program which, using variables called is_male and is_female. Simple stuff. The Program asks you for a name, and the question changes depending if the variables are indicating that the name should be a male one or a female one. My problem starts when I want to add a reference to a videogame if you type a male name (Connor
). How could I make it so it says a different phrase that the one I've set it to print?
I leave the code here so you can see for yourselves.
Please State My Name! It must be a Male name:Connor
My Name Is Connor, I'm The Android Sent by Cyberlife!
My name is Connor
Please State My Name! It must be a Male name:Connor
My name is Connor
Process finished with exit code 0
As you can see, it gives you both the reference and the default one, and it asks you again for the same thing but doesn't give any reference when typed at. It also happens with other things that you type.
Could somebody help me? I would be extremely grateful
My name is Victor Puche, I'm a total noob at programming in Python. I'm trying to create a test program which, using variables called is_male and is_female. Simple stuff. The Program asks you for a name, and the question changes depending if the variables are indicating that the name should be a male one or a female one. My problem starts when I want to add a reference to a videogame if you type a male name (Connor


I leave the code here so you can see for yourselves.
is_male = True is_female = False if is_male and not(is_female): name =(input("Please State My Name! It must be a Male name:")) if is_male and name: "Connor" print("My Name Is Connor, I'm The Android Sent by Cyberlife!") if is_male and not name: "Connor" print("My name is " + name + "")This, ofcourse doesn't work, this is the report when you run this:
Please State My Name! It must be a Male name:Connor
My Name Is Connor, I'm The Android Sent by Cyberlife!
My name is Connor
Please State My Name! It must be a Male name:Connor
My name is Connor
Process finished with exit code 0
As you can see, it gives you both the reference and the default one, and it asks you again for the same thing but doesn't give any reference when typed at. It also happens with other things that you type.
Could somebody help me? I would be extremely grateful