#python3
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...
Conditionals and logical operators · Conditionals let you make decisions in your code. if else choice = input("Cat or Dog?") if choice == 'dog': ...
Data Types, f-string -Tip Calculator · While python doesn't require you to declare your variable along with the data type, the following data types are...