Section 1

Preview this deck

variables

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (23)

Section 1

(23 cards)

variables

Front

names that are given to the values

Back

print("{0:10.2%}".format(12.345678))

Front

1234.57%

Back

relational operators

Front

< >=

Back

print("{0:10.2f}".format(1234.5678))

Front

1234.57

Back

m%n means

Front

integer quotes. w with integer remainder

Back

errors discovered while program is running

Front

runtime errors

Back

input function

Front

prompts the user to enter data

Back

float

Front

numbers written in decimal points

Back

how do you read this: var += n

Front

adds the value of n to the value of var

Back

str1[m:n]

Front

begins at position m and ending at position n-1

Back

grammatical and punctuation errors

Front

syntax error

Back

print("{0:10d}".format(12345678))

Front

12345678

Back

logical operators

Front

and or not

Back

print("{0:10.3f}".format(1234.5678))

Front

1234.568

Back

when the program doesn't perform the way it was intended

Front

logic

Back

**= symbolize what

Front

exponents

Back

print("{0:10.3%}".format(12.345678))

Front

1234.568%

Back

print("{0:10,d}".format(12345678))

Front

12,345,678

Back

can not be directly deleted, sorted, or altered

Front

tuple

Back

int

Front

whole numbers

Back

true or false: division always have a float number

Front

true

Back

variables only:

Front

begin with letters or underscores can only consist of letters underscores and numbers

Back

augmented assignment operators

Front

+=, -= , =, /= , and *=

Back