x = 7 y = 13.87 print("%d %f %s" %(x, y, "lolz")) print("%d\t%f\n%s" %(x, y, "lolz")) print("%3d%-3.1f%10s" %(x, y, "lolz")) print("this stuff is\a\a\a\a%s hard?" %"ing") print("\'\\\t%s!!!" %(str(x)+str(y)))