Day 34 of #100DaysOfCode
Docstrings (documentation strings) serve a similar purpose to comments, as they are designed to explain code. However, they are more specific and have a different syntax.
#python3
Sorry I missed day 32 of #100DaysOfCode
So Day 32 & 33
Of #100daysofcoding
I attended GDG dev fest
So I'll be sharing everything I learned as days go on ☺️
Day 29 of #100DaysOfCode
Code reuse is a very important part of programming in any language. Increasing code size makes it harder to maintain.
#python3#Python
Day 27 of #100DaysOfCode
If range is called with one argument, it produces an object with values from 0 to that argument.
If it is called with two arguments, it produces values from the first to the second.
#python3