If you have been coding for a while in python you already know you can add an item in a list using list.append(value) where list here is a variable that contains list of variables, append is a function and as parameter you will input the value you want to add at the end of the… Continue reading Adding item to a list with slice in python
Category: Code
Learning Python (Automate the boring Stuff) Chapter 3 problem’s alternative solution
Number Guessing Game in python! I was learning python from this wonderful video tutorial and I usually try the problem before the tutor gives the solution. I found out that my solution is better and more full proof than theirs. It’s probably because they are still teaching the concepts and not worried about the details.… Continue reading Learning Python (Automate the boring Stuff) Chapter 3 problem’s alternative solution