Your Thriving Coding Business — A Shocking Truth (Spoiler Alert: It’s About Value)

Why should you create your own coding business?  Creating a coding business is not for everyone. If you go into this with the mindset of “trying this online business thing”, you won’t be successful. Beginning your coding business is hard work. Your initial work will be unpaid. And you must do it while you’re also forced … Read more

Python List sort() – The Ultimate Guide

Every computer scientist loves sorting things. In this article, I’ll show you how Python does it—and how you can tap into the powerful sorting features of Python lists. Definition and Usage: The list.sort() method sorts the list elements in place in an ascending manner. To customize the default sorting behavior, use the optional key argument … Read more

Python List index() – A Simple Illustrated Guide

This tutorial shows you everything you need to know to help you master the essential index() method of the most fundamental container data type in the Python programming language. Definition and Usage: The list.index(value) method returns the index of the value argument in the list. You can use optional start and stop arguments to limit … Read more

Python List count()

This tutorial shows you everything you need to know to help you master the essential count() method of the most fundamental container data type in the Python programming language. Definition and Usage: The list.count(x) method counts the number of occurrences of the element x in the list. Here’s a short example: In the first line … Read more

Coding Doctor Against COVID-19

COVID-19 is everywhere. In this article, I want to express my deep gratitude for the doctors, nurses, and medical personnel working 70-hours or more per week to mitigate the adverse effects of the virus. Here’s a pic of Finxter user Albrecht, a “retired” medical doctor supporting a COVID-19 test station in Germany: I asked the … Read more

Python List reverse()

This tutorial shows you everything you need to know to help you master the essential reverse() method of the most fundamental container data type in the Python programming language. Definition and Usage: The list.reverse() reverses the order of the elements in the list. If you want to create a new list with reversed elements, use … Read more

Python List pop()

This tutorial shows you everything you need to know to help you master the essential pop() method of the most fundamental container data type in the Python programming language. Definition and Usage: The list.pop() method removes and returns the last element from an existing list. The list.pop(index) method with the optional argument index removes and … Read more

Python List copy()

Surprisingly, even advanced Python coders don’t know the details of the copy() method of Python lists. Time to change that! Definition and Usage: The list.copy() method copies all list elements into a new list. The new list is the return value of the method. It’s a shallow copy—you copy only the object references to the … Read more

Python List clear()

Surprisingly, even advanced Python coders don’t know about the clear() method of Python lists. Time to change that! Definition and Usage: The list.clear() method removes all elements from an existing list. The list becomes empty again. Here’s a short example: In the first line, you create the list lst consisting of five integers. You then … Read more

Python List remove()

This tutorial shows you everything you need to know to help you master the essential remove() method of the most fundamental container data type in the Python programming language. Definition and Usage: The list.remove(element) method removes the first occurrence of the element from an existing list. It does not, however, remove all occurrences of the … Read more

Python List insert() Method

How can you insert an element at a given index in a given list? Python’s insert() method is your friend. This tutorial shows you everything you need to know to help you master an essential method of the most fundamental container data type in the Python programming language. Definition and Usage: The list.insert(i, element) method … Read more