Python tutorial for beginners

This is my 1st video of my currently non-existent series. Comment on what I should change for the next video and please rate.

Thank you
Below is the C2F conversion calculator, keep in mind it is only 4 lines long.

def C2F():
Celsius = input(’Enter degrees in Celsius: ‘);
Fahrenheit = (9.0 / 5.0) * Celsius +32;
print Celsius, ‘Celsius =’, Fahrenheit, ‘Fahrenheit’;Duration : 0:10:49

Posted on December 31st, 2007 by admin

Filed under Python | 11 Comments »

First 5 Minutes Programming with Python

How do you get started with Python Programming in just 5 Minutes? Here I show you, using Python 2.5 and the bundled IDLE editor, how to start writing your first program and where to go next for help and tutorials.

First we look at python.org’s do entation and HOWTO section, then we move to my Python Resources for Newbies video at ShowMeDo to learn about on-line tutorials, newsgroups, news, download and community sites. This video is a part of our Python Collection.

Finally we look at Guido van Rossum’s Python Tutorial and use the bundled IDLE editor to write and run a one-line Python program.

Uploaded by the author. Author is a co-founder of ShowMeDo.com (we host Python tutorial videos).Duration : 0:2:44

Posted on August 11th, 2007 by admin

Filed under Python | 18 Comments »

Python 2: Getting around Python modules

Beginners’ tutorial for the Python programming language. This video focuses on importing modules and using the “inspect” module to explore the source code of modules you are using.Duration : 0:9:19

Posted on May 5th, 2007 by admin

Filed under Python | 25 Comments »

Python 1: Installation and beginner’s tutorial.

Here’s a very basic tutorial to get you introduced to the Python programming language.

Table of Contents
* Download Python
* Intro to the command line interpreter
* Intro to IDLE
* Very simple programming examples
- * sum(x,y)
- * Fibonacci
- * printing numbers in a loop

The rest of the videos in this series will not be on this account (murfvillage). They will be posted by the user camurflage. Thank you.Duration : 0:8:25

Posted on May 3rd, 2007 by admin

Filed under Python | 25 Comments »

|