#python-beginner
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: ...
Conditionals and logical operators · Conditionals let you make decisions in your code. if else choice = input("Cat or Dog?") if choice == 'dog': ...