Python Tutorials

Latest

 thumbnail

How to Prepend Content to a File in Python

April 20, 2021

To prepend content to a file in Python, open the file in read+write mode, seek to the start of the file, then write the...

 thumbnail

How to use while not in Python

April 13, 2021

A while not statement in Python loops infinitely while the value of a condition returns false. To demonstrate this,...

 thumbnail

How to Create Functions with Optional Arguments in Python

April 13, 2021

To create an optional argument for a function in Python, give it a default value. When a value for the optional argument...

 thumbnail

How to Create a Dynamic Variable Name in Python

April 13, 2021

To create a dynamic variable in Python, use a dictionary. Set the key as the name of the variable and the value as the c...

 thumbnail

How to Construct a List of Lists in Python

April 13, 2021

To create a list of lists in Python, append them to a list like this: list_1 = [1,2,3] list_2 = [4,5,6] list_3 = [7...

 thumbnail

How to Divide in Python

April 01, 2021