Screen window manager in Linux helps you work efficiently in remote servers.
# Commands used in this tutorial
* Check if you have screen
screen -v
* Install screen
sudo apt-get install screen
* Start a session
screen -S "python"
* Create a new window
Cntl+a c
* Edit and run the Python code
* Navigate between windows
Cntl+a a
* Detach screen
Cntl+a d
* Reconnect screen
* List the screen sessions
screen -ls
* screen -r screen-name
# Detailed tutorial on Screen
https://linuxize.com/post/how-to-use-linux-screen/