Python cara mencetak nilai variabel

 pythonCopyvar1 = 123
var2 = 'World'
print("Hello to the",var2,var1)
Wicked Willet