script.py
print("Hello Matt")
Here we change the line of code in our script to have the string "Hello Matt"
instead of "Hello from Python!"
.
script.py
print("Hello Matt")
When we run our changed script we see that it now prints our new string to the screen:
Terminal/Command Prompt
python script.py
Hello Matt