Thanks to all for suggestions. Linux has "too much freedom" :-)
Regards,
Allen
--
https://mail.python.org/mailman/listinfo/python-list
I have an older laptop I use for programming, particularly Python and Octave,
running a variety of Debian Linux, and I am curious if there is a "standard"
place in the file system to store this type of program file. OK, I know they
should go in a repository and be managed by an IDE but this seem
On Saturday, February 17, 2018 at 8:50:48 AM UTC-6, Steven D'Aprano wrote:
>
> For me, the tool I use is a set of re-usable tools:
>
> - a text editor;
> - a system command prompt in a terminal/console window;
> - a Python REPL for running code snippets and looking up help(obj).
>
> Other people
Yes, it's been covered, but not quite to my satisfaction.
Here's an example simple script:
# Very simple script
bar = 123
I save this as "foo.py" somewhere Python can find it
>>> import foo
>>> bar
Traceback (most recent call last):
File "", line 1, in
NameError: name 'bar' is not defined
#