I use python 3.4 and I can format strings in two ways:
print("%d %d" %(1, 2))
and
print("{:d} {:d}".format(1, 2))
In documentation they show examples only using 'format'. Do it mean that using '%' is not good, or it does not matter which version to use?