print "hello world"
name = "Brian"
print "my name is", nameyour_name = input("What is your name?")
print "your name is", your_nameif your_name == "Brian":
print "That is my name too!"
else:
print "Hello friend"your_age = input("What is your age?")
if your_age == 10:
print "Does this if work?"your_age = int(input("What is your age?"))for x in range(10):
print "Hello", xuser_input = ""
while user_input != "end":
user_input = input("Type end to stop")