All Python From 1 To 23 Flashcards
1
Q
#
A
octophorne, pound character used to comment out lines
2
Q
+
A
Plus
3
Q
-
A
Minus
4
Q
/
A
Slash- division
5
Q
*
A
Asterisk- multiplication character
6
Q
%
How does it work
A
Modulus
X devided by Y with J remaining
The result of % is the J part
7
Q
A
Less then
8
Q
>
A
Greater than
9
Q
<=
A
Less then equal
10
Q
=>
A
More then equal
11
Q
PEMDAS
A
Parenthesis, Exponents, Multiplication, Division, Addition, Subtraction
12
Q
X**Y
A
X to the Y power
13
Q
A//B
A
// is used to perform floor division. The expression 100//40 will return the value of 2. Floor division is useful when you need a quotient to be in whole numbers
14
Q
Variable
A
A name for memory storages of strings, numbers
15
Q
Between_ beetwen
A
Underscore character