Skip to content
Skip to main content
  • Activity
  • 5 minutes

Simple Coding - Summary

Updated Friday, 1st March 2019
A summary of everything you have learned in the 'Simple Coding' collection. 

In this brief introduction to programming you have seen the fundamental building blocks that almost every programming language provides:

  • variables and assignment (=) to store and update data
  • arithmetic operators (+-*)
  • simple data types (strings and numbers, both integers and floating point)
  • data structures (lists)
  • sequence (one instruction per line)
  • iteration (for and while loops)
  • selection (if-else and if-elif-elif-...-else),
  • comparisons (><==!=>=<=)
  • functions (len and sum for lists, int and float to convert strings to numbers)
  • input from the keyboard (input function)
  • output to the screen (print instruction)

Programming languages have to be automatically understood by a machine, so the syntax and grammar are much more constrained than English and other natural languages. Any spelling mistake, like writing flat instead of float or forgetting punctuation like commas and colons, or using the wrong data type, leads to an error.

You have also seen that programming involves writing clear and understandable code (e.g. by using comments and plain English names for variables and functions) to make it easier to change later, and testing it thoroughly.

Learning to program forces us to think clearly and rigorously when solving a problem, because the solution has to be described in very small and precise steps that even a machine can understand. Python makes it easy to write the code once we come up with a sufficiently detailed algorithm, but the thinking (still) has to be done by us.

Like learning any other skill, only practice makes perfect. We hope this tutorial inspired you to learn more Python and to share your creations with friends and family.

 

Become an OU student

Author

Ratings & Comments

Share this free course

Copyright information

Skip Rate and Review

For further information, take a look at our frequently asked questions which may give you the support you need.

Have a question?