#python
Read more stories on Hashnode
Articles with this tag
Intro tkinter is one of the more popular Python GUI libraries. š When you start a tkinter project, you get some boilerplate, or starter code. import...
OOP Object Oriented Programming (OOP) is a programming paradigm (a way of thinking about how to solve a problem) that is based on classes and...
Values_Only Function: The function which accepts a dictionary of key-value pairs and returns a new flat list of only the values. Uses the .items()...
Checks if a string is upper case. Convert the given string to upper case, using str.upper() method and compare it to the original. def...
Calculates the greatest common divisor between two or more numbers/lists. The helperGcdfunction uses recursion. The base case is when y equals 0. In...
Creates a list of elements, grouped based on the position in the original lists. Use max combined with a list comprehension to get the length of the...