Re: [Tutor] Using Modules

2017-04-15 Thread Sri Kavi
Hi, Start with the tutorial at https://docs.python.org/3/tutorial/ It includes Brief Tour of the Standard Library: https://docs.python.org/3/tutorial/stdlib.html https://docs.python.org/3/tutorial/stdlib2.html Hope that helps. Sri On Sat, Apr 15, 2017 at 2:03 PM, Aero Maxx D wrote: > Hi ev

Re: [Tutor] Using Modules

2017-04-15 Thread Peter Otten
Aero Maxx D wrote: ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Using Modules

2017-04-15 Thread Alan Gauld via Tutor
On 15/04/17 09:33, Aero Maxx D wrote: > With Python I'm not finding which modules I need Search for the functionality within the python.org site. The documentation tells you which module you are looking for. > ...I thought I'd connect to a MySQL database There is a standard DB interface in Py

Re: [Tutor] Using Modules

2017-04-15 Thread Joel Goldstick
On Sat, Apr 15, 2017 at 4:33 AM, Aero Maxx D wrote: > Hi everyone, > > I'm very very new to Python, and trying to learn and I'm struggling with the > import statements. > > I understand they are importing modules that I can then use in my code, what > I'm struggling with though is how do I find

[Tutor] Using Modules

2017-04-15 Thread Aero Maxx D
Hi everyone, I'm very very new to Python, and trying to learn and I'm struggling with the import statements. I understand they are importing modules that I can then use in my code, what I'm struggling with though is how do I find out which modules I need to use to do any given task? I do have