Overview of Programming and Python

Main Components of a computer

How Computers Store Data: Memory Concepts

Programming, and Programming Languages

Building Programs

Software development

Involves more than just writing code

The Python Language

Basic Creation and Execution of a Python program

Interactive mode

Script mode

Integrated Development Environments


Programming is about Problem Solving


A sample Python program

def main():                                       # main function, start of program
    number = input('Enter a number: ')            # Read input from the user: password.
    print 'The number you entered is:', number    # Output the result with a message.
    print 'Thank you, have a good day!'           # Output a Good bye message.

main() # This line results in the def main(): line to be executed.

A link to this code file