## What happens when you put an expression on a line without a print command in a python script? ### As mentioned earlier on print command are use to display information when a python program is being written in a script file. No it will not print. ## What does putting a comma at the end of a print command do? In python putting comma keep string on the same line without creating a newline. ## What does putting a print command on a line by itself doe? In python print statment are intended to print out information on the screen so having a print statement without an expression the print statement will display a empty or blank output.