#coding=UTF8 print "Hello World" my_str= "Hello World" result = 9*7 #typecast operators ΓΌ # ganzzahl integer: int () # gleitkommazahl foating point: float () # zeichenkette string: str () #print result #print int (result *(3 + 5)) #print my_string #print "the message is " + str(result) my_list= [12, 53, 12341234, 25, 685] my_colleagues = ["andi", "adam", "franziska", "salim", "michi", "urs"] #print len (my_colleagues) for x in my_colleagues: print x print "hello world" #i = 0 #while (i < len(my_colleagues)): # print my_colleagues [1] # 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]