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