c1 = 'F' i1 = 50 d1 = 123e-3 b1 = True b2 = False s1 = "Hallo, World!" print("{0:10s}".format(c1)) print("{0:10d}".format(i1)) print("{0:10.3f}".format(d1)) print("{0:10}{1:10}".format(b1,b2)) print("{0:10s}".format(s1))