
xs = [10,20,40,23]
string = "Don't panic"

for x in xs:
    print x, x*x

for ch in string:
    print ch

