Congratulations on finishing this project. I quite like how you have incorporated some of the learning from the first guided project here.
Here is a few pointers that might be helpful to you.
You are using print("") to create an empty line. You can also use \n at the end of a line to add a new line, for example print("First line \n \n Second line") and it will print
first line
second line
Another place where you can apply some shortcut is this