0% found this document useful (0 votes)
25 views

Python

Python

Uploaded by

Hastings Kapala
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Python

Python

Uploaded by

Hastings Kapala
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Module 1: Introduction to Python Programming

After completing this module, you will be able to:


 Explain why python is one of the easier programming languages to learn.
 Identify how create the "hello world" program with python in visual studio.
 Discuss the importance of commenting your code.

The key points from this module are:


 The Basic principle of programming is that it is problem solving.
 Python is one of the easier programming languages to learn, and many of its tools are free to
download and use.
 Once you learn how to code in one programming language it will be easier to learn other
programming languages, as the principles are the same.
 There are a lot of different variations of Python, IronPython, Ipython, CPython to name a few.
Most of python’s variations only have some syntax differences but not too many.
 Comments are very useful in your code to help you or someone else understand:- What your
program does,- What a particular line or section of code does;- Why you chose to do something
a particular way;- Anything that might be helpful to know if you or someone else looking at the
code later and trying to understand it.
 The # is the symbol to indicate using comments in python.

You might also like