Python question

Greetings Mosh: I am currently learning Python by using the 6 hour Python tutorial YouTube video (https://www.youtube.com/watch?v=_uQrJ0TkZlc&t=1201). I have a question on the part from 19:55 to 20:11. Here you wrote the following:

print('Hi ’ + name)

You said that after the quotation, we want to dynamically print what we have in the name variable.

What do you mean by dynamically print?

Dynamically, he means that it’s the value of the variable. As it will change depending on what’s stored in “name”. The term dynamic just means it can be different depending on other parts of the program.