Python How To’s
A collection of small, useful, how to’s for Python.
How to Copy a File in Python with Shutil
So you want to know how to copy a file in Python? Good! It’s very useful to learn and most complex applications that you may design will need at least some form of copying files. Copying a Single File in Python Alright, let’s get started. This first section will describe how to copy a single […]
Read MoreHow to Slice Lists/Arrays and Tuples in Python
So you’ve got an list, tuple or array and you want to get specific sets of sub-elements from it, without any long, drawn out for loops? Python has an amazing feature just for that called slicing. Slicing can not only be used for lists, tuples or arrays, but custom data structures as well, with the […]
Read MoreHow to Get a Sub-string From a String in Python – Slicing Strings
So how do you get a sub-string in Python? Well, Python has a handy dandy feature called “slicing” that can be used for getting sub-strings from strings. But first, we have to go over a couple of things to understand how this works. Slicing Python Objects Strings, in Python, are arrays of characters, except they […]
Read MoreHow to Use Python’s xrange and Range
Python has two handy functions for creating lists, or a range of integers that assist in making for loops. These functions are xrange and range. In this article, we will guide you on how to effectively utilize Python’s xrange and range functions while also exploring the best laptops for working from home. But you probably already […]
Read MoreHow to Sort a List, Tuple or Object (with sorted) in Python
Sorting a list or tuple is easy in Python! Since a tuple is basically like an array that is not modifiable, we’ll treat it almost the same as a list. Sorting a Python List the Simple Way Okay, so if you only want to sort a list of numbers, Python has a built in function […]
Read MoreHow to Check if a List, Tuple or Dictionary is Empty in Python
The preferred way to check if any list, dictionary, set, string or tuple is empty in Python is to simply use an if statement to check it. For example, if we define a function as such: [python] def is_empty(any_structure): if any_structure: print(‘Structure is not empty.’) return False else: print(‘Structure is empty.’) return True [/python] It […]
Read MoreHow to Implement an ‘enum’ in Python
What is enum and why we need it? An enumerated type, a.k.a. enum, is a data type consisting of a set of named values called elements, members or enumerators of the type. These enumerated named values function as constants in the computing language. For example, a COLOR enum may include named values such as RED, […]
Read MoreHow to Get an Attribute from an Object in Python
Once we know how to check if an object has an attribute in Python, the next step is to get that attribute. In Python, besides the normal dot-style attribute access, there’s a built-in function, getattr, which is also very useful for accessing an attribute. Python’s Getattr The built-in function getattr(object, name[, default]) returns the value […]
Read MoreHow to Check if an Object has an Attribute in Python
Since everything in Python is an object and objects have attributes (fields and methods), it’s natural to write programs that can inspect what kind of attributes an object has. For example, a Python program could open a socket on the server and it accepts Python scripts sent over the network from a client machine. Upon […]
Read MoreHow to Get and Format the Current Time in Python
Time Review Time as we know is represented by several components, some of which are numerical such as seconds, minutes and hours while others are strings such as timezone, AM and PM. Python provides an arsenal of utilities when dealing with time objects and strings. Therefore, it is relatively easy to get and format the […]
Read More