Python is a general-purpose programming language that is becoming more and more popular for doing data science. Companies worldwide are using Python to harvest insights from their data and get a competitive edge. Unlike any other Python tutorial, this course focuses on Python specifically for data science. In our Intro to Python class, you will learn about powerful ways to store and manipulate data as well as cool data science tools to start your own analyses. Enter DataCamp’s online Python curriculum.
An introduction to the basic concepts of Python. Learn how to use Python both interactively and through a script. Create your first variables and acquaint yourself with Python’s basic data types.
In the Python script below, you can type Python code to solve the exercises. If you hit Run Code or Submit Answer, your python script (script.py) is executed and the output is shown in the IPython Shell. Submit Answer checks whether your submission is correct and gives you feedback.
You can hit Run Code and Submit Answer as often as you want. If you’re stuck, you can click Get Hint, and ultimately Get Solution.
You can also use the IPython Shell interactively by simply typing commands and hitting Enter. When you work in the shell directly, your code will not be checked for correctness so it is a great way to experiment.
Experiment in the IPython Shell; type 5 / 8, for example.
Add another line of code to the Python script: print(7 + 10).
Hit Submit Answer to execute the Python script and receive feedback.
Python is a pretty versatile language.
doing some quick calculations.
developing a database-driven website.
data analysis and cleanning.
You can add comments to your Python scripts. Comments are important to make sure that you and others can understand what your code is about.
To add comments to your Python script, you can use the # tag. These comments are not run as Python code, so they will not influence your result. As an example, take the comment on the right, # Division; it is completely ignored during execution.
Above the print(7 + 10), add the comment # Addition.
Python is perfectly suited to do basic calculations. Apart from addition, subtraction, multiplication and division, there is also support for more advanced operations such as:
Exponentiation: . This operator raises the number to its left to the power of the number to its right. For example 42 will give 16. Modulo: %. This operator returns the remainder of the division of the number to the left by the number on its right. For example 18 % 7 equals 4. The code in the script on the right gives some examples.
Suppose you have $100, which you can invest with a 10% return each year. After one year, it’s 100×1.1=110 dollars, and after two years it’s 100×1.1×1.1=121. Add code on the right to calculate how much money you end up with after 7 years.
In Python, a variable allows you to refer to a value with a name. To create a variable use =, like this example:
x = 5 You can now use the name of this variable, x, instead of the actual value, 5.
Remember, = in Python means assignment, it doesn’t test equality!
Remember how you calculated the money you ended up with after 7 years of investing $100? You did something like this:
100 * 1.1 ** 7 Instead of calculating with the actual values, you can use variables instead. The savings variable you’ve created in the previous exercise represents the $100 you started with. It’s up to you to create a new variable to represent 1.1 and then redo the calculations!
Create a variable growth_multiplier, equal to 1.1.
Create a variable, result, equal to the amount of money you saved after 7 years.
Print out the value of result.
In the previous exercise, you worked with two Python data types:
int, or integer: a number without a fractional part. savings, with the value 100, is an example of an integer. float, or floating point: a number that has both an integer and fractional part, separated by a point. growth_multiplier, with the value 1.1, is an example of a float. Next to numerical data types, there are two other very common data types:
str, or string: a type to represent text. You can use single or double quotes to build a string. bool, or boolean: a type to represent logical values. Can only be True or False (the capitalization is important!).
To find out the type of a value or a variable that refers to that value, you can use the type() function. Suppose you’ve defined a variable a, but you forgot the type of this variable. To determine the type of a, simply execute:
When you sum two strings, for example, you’ll get different behavior than when you sum two integers or two booleans.
In the script some variables with different types have already been created. It’s up to you to use them.
Calculate the product of savings and growth_multiplier. Store the result in year1.
What do you think the resulting type will be? Find out by printing out the type of year1.
Calculate the sum of desc and desc and store the result in a new variable doubledesc.
Print out doubledesc. Did you expect this?
Notice how desc + desc causes “compound interest” and “compound interest” to be pasted together.
Using the + operator to paste together two strings can be very useful in building custom messages.
Suppose, for example, that you’ve calculated the return of your investment and want to summarize the results in a string. Assuming the floats savings and result are defined, you can try something like this:
print(“I started with $” + savings + " and now have $" + result + “. Awesome!”) This will not work, though, as you cannot simply sum strings and floats.
To fix the error, you’ll need to explicitly convert the types of your variables. More specifically, you’ll need str(), to convert a value into a string. str(savings), for example, will convert the float savings to a string.
Similar functions such as int(), float() and bool() will help you convert Python values into any type.
Hit Run Code to run the code on the right. Try to understand the error message.
Fix the code on the right such that the printout runs without errors; use the function str() to convert the variables to strings.
Convert the variable pi_string to a float and store this float as a new variable, pi_float.
Now that you know something more about combining different sources of information, have a look at the four Python expressions below. Which one of these will throw an error? You can always copy and paste this code in the IPython Shell to find out!