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...
Read: https://alexrider04.hashnode.dev/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...
Read: https://alexrider04.hashnode.dev/day-1-of-100daysofcode
👍1