A high level programming language. It's used for programming applications and websites to a server.
Python
what are python variables
are containers for storing data values.
2+2
4.0
say a number
1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
are used to perform operations on variables and values.
operators
Creating web applications on a server
Using software it can create workflows
Utilities of python
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.
3^3
twenty seven
what does "int" stand for?
integer
operator=+
name of +?
addition
Windows, Mac, Linux,
If you want to specify the data type of a variable, this can be done with...
casting
Python has also a built-in module called
math
what does "complex" stand for?
complex
operator==
name=?
equal
Python syntax
is the set of rules that defines how a Python program will be written and interpreted
You can get the data type of a variable with...
the type() function
The min() and max() functions can be used to...
find the highest or lowest value in a iterable
There are three numeric types in Python:
Variables of numeric types are created when you assign a...
value to them
are used to combine conditional statements
logical operators
example of exucting python syntax
>print(hello,world!")
A variable can have a short name like...
rounds a number upwards to its nearest integer
math.ceil()
You can convert from one type to another with the...
int(), float(), and complex() methods
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