DICTIONARY.ZIP

Python Modules  

(updated at May 09, 2024)   124  
What is a Module?.Consider a module to be the same as a code library.A file containing a set of functions you want to include in your application.Create a Module.To create a module just save t...

Python Polymorphism  

(updated at May 09, 2024)   142  
The word "polymorphism" means "many forms",and in programming it refers to methods / functions / operators with the same name that can be executed on many objects or classes.Function Polymorph...

Python Functions  

(updated at May 09, 2024)   136  
A function is a block of code which only runs when it is called.You can pass data,known as parameters,into a function.A function can return data as a result.Creating a Function.In Python a fun...
Python Functions

Python While Loops/For Loops  

(updated at May 09, 2024)   144  
The while Loop.With the while loop we can execute a set of statements as long as a condition is true.The while loop requires relevant variables to be ready,in this example we need to define an...
Python While Loops/For Loops

Python Dictionaries  

(updated at May 09, 2024)   113  
Dictionaries are used to store data values in key:value pairs.A dictionary is a collection which is ordered*,changeable and do not allow duplicates.Dictionaries are written with curly brackets...
Python Dictionaries

Python Sets  

(updated at May 09, 2024)   93  
Sets are used to store multiple items in a single variable.Set is one of 4 built-in data types in Python used to store collections of data,the other 3 are List,Tuple,and Dictionary,all with di...

Python Tuples  

(updated at May 09, 2024)   125  
Tuples are used to store multiple items in a single variable.Tuple is one of 4 built-in data types in Python used to store collections of data,the other 3 are List,Set,and Dictionary,all with ...
Python Tuples

Python Lists  

(updated at May 10, 2024)   88  
Lists are used to store multiple items in a single variable.Lists are one of 4 built-in data types in Python used to store collections of data,the other 3 are Tuple,Set,and Dictionary,all with...
Python Lists