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
You can use a list for true conditions like this: