0% found this document useful (0 votes)
2 views4 pages

01-Numbers

This document is a lecture on using numbers in Python, covering types of numbers, basic arithmetic operations, and variable assignments. It explains the differences between integers and floating-point numbers, as well as various arithmetic operations including addition, subtraction, multiplication, division, and floor division. Additionally, it discusses the rules for naming variables in Python and provides examples of how to create and manipulate them.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views4 pages

01-Numbers

This document is a lecture on using numbers in Python, covering types of numbers, basic arithmetic operations, and variable assignments. It explains the differences between integers and floating-point numbers, as well as various arithmetic operations including addition, subtraction, multiplication, division, and floor division. Additionally, it discusses the rules for naming variables in Python and provides examples of how to create and manipulate them.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

vjiwoxcbo

March 25, 2025

___
Content Copyright by Pierian Data

1 Numbers and more in Python!


In this lecture, we will learn about numbers in Python and how to use them.
We’ll learn about the following topics:
1.) Types of Numbers in Python
2.) Basic Arithmetic
3.) Differences between classic division and floor division
4.) Object Assignment in Python

1.1 Types of numbers


Python has various “types” of numbers (numeric literals). We’ll mainly focus on integers and
floating point numbers.
Integers are just whole numbers, positive or negative. For example: 2 and -2 are examples of
integers.
Floating point numbers in Python are notable because they have a decimal point in them, or use
an exponential (e) to define the number. For example 2.0 and -2.1 are examples of floating point
numbers. 4E2 (4 times 10 to the power of 2) is also an example of a floating point number in
Python.
Throughout this course we will be mainly working with integers or simple float number types.
Here is a table of the two main types we will spend most of our time working with some examples:
Examples
Number “Type”
1,2,-5,1000
Integers
1.2,-0.5,2e2,3E2
Floating-point numbers

1
Now let’s start with some basic arithmetic.

1.1.1 Basic Arithmetic


[1]: # Addition
2+1

[1]: 3

[2]: # Subtraction
2-1

[2]: 1

[3]: # Multiplication
2*2

[3]: 4

[4]: # Division
3/2

[4]: 1.5

[5]: # Floor Division


7//4

[5]: 1

Whoa! What just happened? Last time I checked, 7 divided by 4 equals 1.75 not 1!
The reason we get this result is because we are using “floor” division. The // operator (two forward
slashes) truncates the decimal without rounding, and returns an integer result.
So what if we just want the remainder after division?
[6]: # Modulo
7%4

[6]: 3

4 goes into 7 once, with a remainder of 3. The % operator returns the remainder after division.

1.1.2 Arithmetic continued


[7]: # Powers
2**3

[7]: 8

2
[8]: # Can also do roots this way
4**0.5

[8]: 2.0

[9]: # Order of Operations followed in Python


2 + 10 * 10 + 3

[9]: 105

[10]: # Can use parentheses to specify orders


(2+10) * (10+3)

[10]: 156

1.2 Variable Assignments


Now that we’ve seen how to use numbers in Python as a calculator let’s see how we can assign
names and create variables.
We use a single equals sign to assign labels to variables. Let’s see a few examples of how we can
do this.
[11]: # Let's create an object called "a" and assign it the number 5
a = 5

Now if I call a in my Python script, Python will treat it as the number 5.


[12]: # Adding the objects
a+a

[12]: 10

What happens on reassignment? Will Python let us write it over?


[13]: # Reassignment
a = 10

[14]: # Check
a

[14]: 10

Yes! Python allows you to write over assigned variable names. We can also use the variables
themselves when doing the reassignment. Here is an example of what I mean:
[15]: # Check
a

3
[15]: 10

[16]: # Use A to redefine A


a = a + a

[17]: # Check
a

[17]: 20

The names you use when creating these labels need to follow a few rules:
1. Names can not start with a number.
2. There can be no spaces in the name, use _ instead.
3. Can't use any of these symbols :'",<>/?|\()!@#$%^&*~-+
4. It's considered best practice (PEP8) that names are lowercase.
5. Avoid using the characters 'l' (lowercase letter el), 'O' (uppercase letter oh),
or 'I' (uppercase letter eye) as single character variable names.
6. Avoid using words that have special meaning in Python like "list" and "str"
Using variable names can be a very useful way to keep track of different variables in Python. For
example:
[18]: # Use object names to keep better track of what's going on in your code!
my_income = 100

tax_rate = 0.1

my_taxes = my_income*tax_rate

[19]: # Show my taxes!


my_taxes

[19]: 10.0

So what have we learned? We learned some of the basics of numbers in Python. We also learned
how to do arithmetic and use Python as a basic calculator. We then wrapped it up with learning
about Variable Assignment in Python.
Up next we’ll learn about Strings!

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy