I am a python newbie, and I've written so many lines of code in a python script. I initially started copying and pasting each line in the iPython console and I feel like it is taking forever. Is there a more efficient way to do this?
Lets say I have a script called "movie_analysis.py" saved in my current working directory. How can I ask the program to read in the file, and then execute every line in the script one after the order (i.e in the order they were written).
Thanks in advance!!!
import movie_analysis?