Nov 19, 2022

Python #1 (Basic)


String, Integer, Float, Boolean
item = "Hello world"             (string)
item = 24                                  (integer)
item = 24.034                           (float)
item = True or False               (Boolean)      
item = ['abc', 'cde', 'efg', 'hij'] (List)
item = [1, 2, 5, '4e+', True, 5] (List)
item =                                       (tuple)
item =                                       (set)
item =                                       (dict)

List
item = [1, 2, 5, '4e+', True, 5]
print (item[0]) = 1


Math Function
3 ** 2 = 9
20 / 3 = 6.66667
20 // 3 = 6
10 %  2 = 0
9 %  2 = 1
--------------------------
round (3.25) = 3
abs (3.25) = 3.25
abs (-3.25) = 3.25
--------------------------
bin (5) = 0b101
int ("0b101", 2) = 5
# in this case the value 2 in int( ) mentioned to binary
--------------------------
complex is combination integer and imaginary

 
Shortcut
Ctrl + D (Duplicate previous line)