Thursday, April 16, 2015

Python Basics - Chapter 2 - Python Tutorial

Python BasicsIn the previous chapter we just gave you an overview of the Python Programming Language and we really did not get a chance to see of the language works. In chapter 2 of Learning Python, we are going to focus on Python Basics and actually get to practice typing some code. We will explore all of Python’s core data types with just an introduction to each of them. Our main focus in this chapter is cover why and how we would need a certain data type. Later in the tutorials we will really dive deep into each data type offering you even more knowledge.


Data Types To Be Covered


Numbers – 7534, 87432.33


Strings – ‘Hello World!’


List – [ 1, 89, 45, 5]

Dictionaries – ‘dog': ‘Maggie’, ‘cat': ‘Missy’


Tuples – (‘Tom’, ‘John’)


and more


Python Basics Tutorials List


  1. Assign a Variable in Python

  2. Python Numbers

  3. Python Strings

  4. Python List

  5. Python Dictionaries

  6. Python Tuples

  7. How To Install Sublime Text on Mac OS X

  8. How To Install Sublime Text on Windows

No comments:

Post a Comment