Énoncé d'impression avec plusieurs variables
band = 8
name = "Sarah Fier"
print("The band for %s is %s out of 10" % (name, band))
Chunxiao Wang
band = 8
name = "Sarah Fier"
print("The band for %s is %s out of 10" % (name, band))