Programming Tutorials

Latest

 thumbnail

How to use if OR Statements in Python

May 28, 2021

Python if OR statements provide the same logic as multiple if-else statements but with the ability to execute the same b...

 thumbnail

How to Get Index/Position of Item in Python List

May 28, 2021

To get the position of an element in a Python list, use the index() function. Pass .index() after the list to evaluate a...

 thumbnail

How to use curl in Python

May 25, 2021

curl is used to transfer data from one system to another VIA URL's using GET, POST, PUT and DELETE methods. To use...

 thumbnail

How to Get a Rolling Mean From a pandas DataFrame in Python

May 25, 2021

A rolling mean is an average from a window based on a series of sequential values from the data in a DataFrame. To...

 thumbnail

How to Get & Parse Data From a YAML File in Python

May 25, 2021

To get data from a YAML file in Python, import the PyYAML Python package then use the yaml.load() function to parse a fi...