#100daysofcode
Read more stories on Hashnode
Articles with this tag
Capstone Project · The first capstone project A capstone project in the world of programming is a significant and comprehensive project. It serves as a...
Functions · Basic Functions A function is essentially a set of instructions that you can use over and over again to perform a specific task. For example,...
Dictionaries · Dictionaries are an effective way of storing key-value pairs. {"Key" : "Value} #Dictionary which stores the genders of pet...
Functions and Loops · Project - Hangman
looping · Loops do repetitive tasks for you. for in loop The easiest way to iterate through a list or string. for iterator_variable in list: ...
Lists and Randomization · Once your code gets bigger and bigger you do not want it all sitting in a single file. Break it up into files or in python...