How similar are the commands for Linux in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How similar are the commands for Linux in python

4th Nov 2016, 7:41 PM
Brandon Rayborne
2 Answers
+ 1
As long as you don't use librairies (which can take the form of compiled python files in .pyc) and don't use system calls (using for example the os.system() function), your python program should be usable on both systems. The line Met174 refers to is the "shebang", in the form of #!/usr/bin/python which is used by bash to know where the python interpreter is located.
5th Nov 2016, 10:47 AM
Pierre Varlez
Pierre Varlez - avatar
0
Some moments in this book Mark Summerfield : "Programming in Python 3" For example, it is necessary to add 1 line for Unix systems, the program became executed
5th Nov 2016, 3:10 AM
Met174