Python Basic types

Python has five basic types: #Numbers you can put them as: a = 1 b = 3 or var_1=4 var_2=3 or delete them like (“del var”) or (“del var1[,var2[,var3]]] etc. Also python supports four numerical types: int (integers), long (long integers, can also be octal or hexadecimal), float (floating point real values) and complex (complex … Continue reading Python Basic types