A | B |
parse | a common programming task that splits the given sequence of characters or values (text) from a string into smaller parts based on some rules |
block | a group of one or more statements enclosed in brackets; a piece of Python program text that is executed as a unit |
break | it ends the current loop and resumes execution at the next line of code |
continue | It returns the control to the beginning of the while loop; It skips all the remaining statements in the current iteration of the loop and moves the control back to the top of the loop |
debugging | the process of identifying and removing errors from computer hardware or software |
exceptions | a signal that an error or other unusual condition has occurred |
float | A real number that is written with a decimal point |
Function call | a request made by a program or script that performs a predetermined function |
Garbage collection | memory management, the process of storing memory and releasing memory is automatic in python |
generators | functions which allow you to declare a function that behaves like an iterator, ie.. it can be used in a for loop |
immutable | An object that cannot be changed |
mutable | An object that can be changed |