#beginners-learningtocode-100daysofcode
Read more stories on Hashnode
Articles with this tag
Day 19 in #100DaysOfCode After we successfully install Jupyter Notebook, we can now get into more details and have a full technical start to Machine...
Day 18 in #100DaysOfCode To be able to perform Machine Learning in Python, we should be using Jupyter Notebook. The Jupyter Notebook is an...
Day 13 in #100DaysOfCode Modules in Python We use modules to organize our code into multiple files. We refer to each file as a module. Modules in...
Day 11 in #100DaysOfCode Comments In Python, a comment begins with the hash character # and extends to the end of the physical line. However, a hash...
Day 9 in #100DaysOfCode Functions As our programs grow, we need to break up our code into smaller, more manageable, and more maintainable chunks we...
Day 8 in #100DaysOfCode Data values are stored in key: value pairs using dictionaries. A dictionary is an ordered, changing collection that does not...