Python Programming Tutorials
Python Programming Tutorials
Tutorials
Python
Python is a very easy interpreted language you can use for
Making apps and games.
Python pros and cons
First let’s learn
basics.
Don’t forget to take
notes!
• String (%s)
A string is a set of characters.
It is written between ‘’ or “”.
DATA Types E.g.: “Mike Tyson”, “_01234”
There are many data types in python.
The most basic data types are String, • Integer (%i)
Integers, Float, Bytes, Boolean and An integer is a whole number.
None Type.
E.g.: 1,23, 345435
These are the Easiest to know.
• Float (%f)
Float means a decimal or whole number.
E.g.: 1.0000, 34.4646, 2.5, 343434.34334444
• Bytes
As you probably know, a byte is 8 bits and minimum space
required for a character. You can store string, integer,
float, etc. in any format
• Boolean
Boolean is a simple True or False value.