Join us this Thursday for a monthly Think Python study group meeting: meetup.com/pythonswfl/eve…. We're going to finish Chapter 1 and delve into the next one. #thinkpython
@AllenDowney 👍 Agreed! I use #ChatGPT Plus & it's a game-changer. It helps me a lot with languages I am not too familiar like python and regex. With kotlin, it helps brainstorming. LLM-assist is the future of coding!💻🚀 #ThinkPython#DSIRP#codingfuture
I finally managed to go through the book #ThinkPython by @AllenDowney . Unafraid to admit there are topics I am not so confident about. Looking to solve problems and make projects to refine my learning. Any ideas in right direction are more than welcome.
#100DaysOfCode#python
The print statements are useful for debugging, but once your function working, you should remove them. Code like that is called scaffolding. It is helpful for building program but is not the part of actual program.
#100DaysOfCode#ThinkPython
Day 32-35 #100DaysOfCode - I have studied functions on Python, some modules, Continued on reading the book #ThinkPython, did some Web Development - (responsive websites) and started to understand a little bit more about python environments and @Docker .
The [ interface ] of a function is a summary of how it is used: what are the parameters? What does the function do? And what is the return value? An interface is “clean” if it allows the caller to do what they want without dealing with unnecessary details. #ThinkPython