Python Tutorials

Overview

Python has various built-in data types to allow for variables to store different types of data that can do different things.

These default data-types are:

ParameterDescription
Text Typestr
Numeric Typesint, float, complex
Sequence Typeslist, tuple, range
Mapping Typedict
Set Typesset, frozenset
Boolean Typebool
Binary Typesbytes, bytearray, memoryview
None TypeNoneType

Getting the Data Type

You can get the data type of any object by using the type() function

x = 8
print(type(x))
<class 'int'>

Setting the Data Type

In Python, the data type is set when you assign a value to a variable.

x = "Hello World"                         #str	
x = 8                                     #int	
x = 8.8	                                  #float	
x = 8j	                                  #complex	
x = ["Sam", "Michael", "Gabriel"]         #list	
x = ("Sam", "Michael", "Gabriel")         #tuple	
x = range(6)                              #range	
x = {"name" : "Johnny", "age" : 11}       #dict	
x = {"Sam", "Michael", "Gabriel"}         #set	
x = frozenset({"A", "B", "C"})            #frozenset	
x = True                                  #bool	
x = b"Hello"                              #bytes	
x = bytearray(5)                          #bytearray	
x = memoryview(bytes(5))                  #memoryview	
x = None                                  #NoneType

Setting the Specific Data Type

If you want to specify the data type, you can use the following constructor functions.

x = str("Hello World")                    #str	
x = int(8)                                #int	
x = float(8.8)                            #float	
x = complex(8j)                           #complex	
x = list(["Sam", "Michael", "Gabriel"])   #list	
x = tuple(("Sam", "Michael", "Gabriel"))  #tuple	
x = range(6)                              #range	
x = dict(name = "Johnny", age = 11)       #dict	
x = set({"Sam", "Michael", "Gabriel"})    #set	
x = frozenset({"A", "B", "C"})            #frozenset	
x = bool(2)                               #bool	
x = bytes(5)                              #bytes	
x = bytearray(5)                          #bytearray	
x = memoryview(bytes(5))                  #memoryview

Python Notes:

  • The most recent major version of Python is Python 3; however, Python 2 is still in use and quite popular, although not being updated with anything other than security updates
  • Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses
  • Python relies on indentation, using whitespace to define scope, such as the scope of loops, functions, and classes; other programming languages often use curly-brackets for this purpose
  • Python string methods return new values, and DO NOT change the original string
  • Python tuples are unchangeable after created (their items CANNOT be changed or re-ordered at a later point)
  • Python sets are unordered (may appear in random orders when called), unchangeable (the value of individual items cannot be changed after creation), unindexed (items cannot be referred to by index or key), and duplicates are NOT ALLOWED
  • As of v3.7, Python dictionaries are ordered and duplicates ARE ALLOWED; in v3.6 and earlier, dictionaries were unordered (did not have a defined order and could not be referred to using an index)

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.