#print("Hello") #print(dir("Hello")) #print(help("Hello".capitalize)) #print(type("Hello")) # 3 #astring = input(" Give me a number") # 2.7 # astring = raw_input("Give me a number") #anumber = int(astring) / 100 #print(anumber) # 2.7 # another_string = raw_input(" Enter a string:") another_string = input(" Enter a string:") print (another_string.startswith("A")) #print( help(another_string.index)) print( another_string[0:1] == "A") # basic math symbols ( aka operators) in Python print('Counting IQ') print('Example IQ is ', 80+40) # 2.7 # str_classmates = raw_input("How many classmates do you have?> " ) str_classmates = input("How many classmates do you have?> " ) float_classmates = float(str_classmates) int_classmates = int(str_classmates) print ("Is this a large class?\n" , int_classmates > 15)