Dictionaries in python · Dictionaries in python are used to store data in key-value pairs. Values in a dictionary are changeable via methods that will be...
Conditions in python · if statements if statements in python checks whether a certain condition is met then something will be done, for instance, if 6 is...
Functions in Python · A function is a bunch of code that performs a particular task when called. From the definition, it is already as important to note...
On day 3, of my 30 days of the python coding series, I learned about tuples in python. Just like lists in Python, tuples store items in a single...
Today I learnt about lists in python and their different methods. Lists are values fixed in a variable example: my_list = ['mango', 'True', 1]. A list...
I am doing a Python programming refreshing course by freecode camp. This is the first day of a 30-day challenge that I put in place to help me be...