Day 1 of #100DaysOfCode
Let's go through the basics of Python
Variables: They are containers in which they store some type of value like string, integer, boolean, etc.
#In python we declare variable like this
phone = "charger"
print(phone)
phone = "case"
print(phone)
phon...
shreyash-chauhan.hashnode.dev5 min read