[Tutor] Next steps after creating virtualenv (new github project)?

2019-03-03 Thread Thomas Güttler Lists
Hello, I want to execute: print('Hello world.') in a file called hello.py After creating a virtual-env (via PyCharm) I  have these directories: ./foo ./foo/venv ./foo/venv/lib ./foo/venv/lib/python3.6 ./foo/venv/lib/python3.6/site-packages ./foo/venv/include ./foo/venv/bin I wa

Re: [Tutor] Next steps... :p:

2014-07-08 Thread Paradox
On 07/08/2014 11:51 AM, Ni Hung wrote: > What should I do next to advance my knowledge of python? Should I study/use libraries/modules? Which ones? Any other suggestions? > > Thanks and Regards > Nii Oops, replied to sender and not to the list ... Sounds like you are ready to start solving r

Re: [Tutor] Next steps...

2014-07-08 Thread Alan Gauld
On 08/07/14 04:51, Ni Hung wrote: libraries (how are they different from modules or are the same thing with two names?) In Python libraries and modules are nearly the same. Libraries are a concept in Python which are realized using modules (or packages). In other languages libraries are the

Re: [Tutor] Next steps...

2014-07-08 Thread Danny Yoo
On Mon, Jul 7, 2014 at 8:51 PM, Ni Hung wrote: > ok, I am now able to write scripts in python. I can read/modify scripts > written by others (true to some level). I understand the basics of > libraries (how are they different from modules or are the same thing with > two names?) like urllib2, js

[Tutor] Next steps...

2014-07-07 Thread Ni Hung
ok, I am now able to write scripts in python. I can read/modify scripts written by others (true to some level). I understand the basics of libraries (how are they different from modules or are the same thing with two names?) like urllib2, json, sys, os etc. and have used them in some scripts. Wh