#print "Hello World" #print 23*1123 result = (233453+1123)*3 my_str = "Hello World" print float(result) #ganzzahl integer : int() #gleitkommazahl float: float() #zeichenkette string: str() #print "the message is " + my_str #my_str2 = "the result is " + str(result) + " and the message is " + my_str #print my_str2 my_list = [ 12, 324, 123, 345, 858888, 23] my_colleagues = [ "andi", "adam", "franziska", "salim", "michi", "urs"] print my_colleagues[5] #print my_str[6] print len(my_colleagues) #i = 0 #while i < len(my_colleagues): # print my_colleagues[i] # i = i+1 for i in my_colleagues: print i #print my_colleagues[0] #print my_colleagues[1] #print my_colleagues[2] #print my_colleagues[3] #print my_colleagues[4] #print my_colleagues[5]