Basic
Variables
Math
Numbers
Operators
100

A high level programming language. It's used for programming applications and websites to a server.

Python

100

what are python variables

are containers for storing data values.

100

2+2

4.0

100

say a number

1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20

100

are used to perform operations on variables and values.

operators

200

Creating web applications on a server

Using software it can create workflows

Utilities of python

200

Python has no command for declaring a variable 

when are variables created?

A variable is created the moment you first assign a value to it.

200

3^3

twenty seven

200

what does "int" stand for?

integer

200

operator=+

name of +?

addition

300
It can be used with...

Windows, Mac, Linux,

300

If you want to specify the data type of a variable, this can be done with...

casting

300

Python has also a built-in module called

math

300

what does "complex" stand for?

complex

300

operator==

name=?

equal

400

Python syntax

 is the set of rules that defines how a Python program will be written and interpreted

400

You can get the data type of a variable with...

the type() function

400

The min() and max() functions can be used to...

find the highest or lowest value in a iterable

400

There are three numeric types in Python:

  • int
  • float
  • complex

Variables of numeric types are created when you assign a...

value to them

400

 are used to combine conditional statements

logical operators

500

example of exucting python syntax

>print(hello,world!")

500

A variable can have a short name like...

x or y
500

 rounds a number upwards to its nearest integer

math.ceil()

500

You can convert from one type to another with the...

int(), float(), and complex() methods

500

are used to compare the objects, not if they are equal, but if they are actually the same object, with the same memory location


Identity operators

M
e
n
u