a = 300
b = True
c = "c++"
d = 3.14
e = "python"
print("%d" % a)
print("%d + 88 = %d" % (a, a + 88))
print("%s and %s" % (c, e))
print("[%d, %s, %s, %s, %f]" % (a, b, c, e, d))
print("PI: %f" % d)
'''
run:
300
300 + 88 = 388
c++ and python
[300, True, c++, python, 3.140000]
PI: 3.140000
'''