#codingUTF8 print "Hello World" print 3+7 result = 3123-745 #Typecast operators #ganzzahl integer: int() #zeichenkette string: str() #gleitzahlkommazahl floating point: float() print result print int((result*(3+5))) print "the result is" + str(result) print "the message is" + "Hello World" my_list = [12,53,2,1234134,25,685] my_colleagues = ["andi","adam","franziska","salim","michi","urs"] print len(my_colleagues) i = 0 while (i< len(my_colleagues)): print my_colleagues[i] i = i+1 #print my_list[1:3] #print my colleagues[0] #print my colleagues[1] #print my colleagues[2] #print my colleagues[3] #print my colleagues[4] #print my colleagues[5]