I need python understand True when 1, yea, y is typed

95 Views Asked by At

I would like to learn how could i run below Python code proper way. I guess comments will do the work below. Now, this only works well just in case I type "True" or "False" with capital initial letters. But I also need to get the same result when typed 1 or true etc.

# Here we ask the user place an input and assign it to name parameter.
name = raw_input ("What is your name human?: ")

# Here we will display the value of name parameter placed by user
print "Got it! Your name is %r" % name

# Here we ask the user if he is owning the device.  
# We will assign the answer to computers_owner parameter
computers_owner = input ("Are you the owner of this machine?: ")

# In this question's answer we have an if condition.

# If the answer is True machine will say "Good! I need you" % name
if computers_owner is True:
    print "Good! I need you %s" % name  

# If the answer is False machine will say "Call me your master!" % name 
else:
    print "Call me your master! %s" % name 
1

There are 1 best solutions below

3
On BEST ANSWER

You can use a list for true conditions like this:

name = raw_input ("What is your name human?: ")
print "Got it! Your name is %r" % name
computers_owner = raw_input("Are you the owner of this machine?: ")
if computers_owner in ['1','yea','y','yo','hell yeah','true','True', 'true dat']:
    print "Good! I need you %s" % name  
else:
    print "Call me your master! %s" % name