To create a file from terminal I type the following...
$ touch filename.py
To open the file I just created from terminal, I then type...
in .bashrc
lazytouch() { touch $1 open $1 }
then type
$ lazytouch anything.really