Название: Python Handbook For Beginners
Автор: Roman Telmanovich Gurbanov
Издательство: ЛитРес: Самиздат
Жанр: Техническая литература
isbn: 978-5-532-96720-5
isbn:
Input the name of our variable, which is the film, and hit enter.
In response to the variable name, the program returns its value, which in our case is "Super Cat."
Now, as you've created your first variable, experiment with it. Change name and value. See what happens.
3 Let's Print Variable Value
We've just learned how to create a variable. Now let's learn how to output its value.
Do you remember the print function we used earlier? Let's combine it with our variable and see what happens. Write this code in the console and hit run:
film = "Super Cat"
print(film)
Let's break it down:
1) First, we declared a variable and gave it a name – film.
2) Then we assigned a value to the variable – Super Cat.
3) Then, on a second line, we wrote a print function.
And finally, we passed the variable name to the print function, putting it in the function brackets.
Every time we create a variable and pass its name to the print function, it will output the variable's value, just like in our example.
Now you know how programmers display variables in Python. It doesn't seem too tricky. Let's have some practice. Below is the code that is missing some elements. You have to fix it so the program could create a variable and display its value.
= " "
()
By now, you should have sufficient knowledge and skills to accomplish this task. When done, iterate on it as long as you like. Change variable names and values. Hone on your new skills!
4 Wrapping Up Chapter Two
In chapter two, we have accomplished the following:
1) Learned what a variable is;
2) Created our first variable;
3) Learned how to display variable values.
5 Chapter Two Test
1. What is the purpose of variables?
1) Computers use variables to store information.
2) Computers use variables to change information.
3) Computers use variables to retrieve or delete information.
2. If a variable name consists of two or more words, you shall connect them using:
1) Underscore.
2) Dash line.
3) Write the words together, without space.
4) Write the words together with a capital letter without space.
3. We can display a variable on the screen by:
1) Using the print() function and passing the print command in its parentheses.
2) Using the print() function and passing the value of the variable in its parentheses.
3) Using the print() function and passing the name of the variable in its parentheses.
4. Arrange the parts of the code so that the program creates and displays the variable.
(name)
name
=
"John Doe"
CHAPTER THREE: NUMBERS
1 Integers and Fractional Numbers
You already know that integers, like 5 or 10, and fractional numbers, like 5.5 or 10.7, also called float from your school math classes. Python works with both types of numbers. It also works with relevant math operators, which are coming further.
2 Math operators
Python allows you to work with numbers using relevant math operators, that are:
1) Addition operator: +
2) Subtraction operator: -
3) Multiplication operator: *
4) Division operator: /
Let's jump into the console to work with some numbers and math operators.
3 Working with Numbers
Run empty console and hit repl button, which you already know. You should get an empty input field: input 2+2, and hit enter. What's the number you've got? Now, using the same field, subtract 5 out of 10, using subtraction operator: – Let's also multiply 5 by 5, using the multiplication operator: * Finally, let's divide 10 by 2, using the division operator: /
4 Division Without Remainder
Let's talk about division without remainder in Python. Did you notice that we've got a fraction when we divided 10 by 2, which was 5.0? But what if we need to get an integer? To get that, all we need is to use a double division operator – // Try it out. Open the input field, write 10//2, and hit enter. What number have you got now?
5 Calculation Order
Python handles calculation order, which has no difference from the order you've learned in math classes. Can you calculate (5+5)*3, then write it into the input field and check if you were right? Here is how Python will calculate it:
First, Python will calculate whatever is in brackets, following the order: first multiplication, then division, then addition, then subtraction. After that, Python will calculate whatever is around brackets, following the same order as above (multiplication, division, addition, subtraction)
Hence, Python will add 5 and 5, which will result in 10. And multiply 10 by 3, which will result in 30. Was your answer – 30? Or was it something else?)
6 Numbers and Variables
By this time, we've learned print function, variables, and numbers in Python. Let's combine them all!
Let's write an example with numbers, save its result in a variable, and then display it. Here is how it looks like:
result = 2+2
print(result)
Guess what the output will be? Please take the above code and run it in the console to check it out.
Let's break it СКАЧАТЬ