Tag Archives: Python tutorials

Python tutorials for Business Analyst – Python Functions

(Python Tutorial – 015) Python Functions In this article, you’ll learn about functions, what a function is, the syntax, components, and types of functions. Also, you’ll learn to create a function in Python.   What is a function in Python? In Python, a function is a group of related statements that performs a specific task. …

Python tutorials for Business Analyst – Python pass statement

(Python Tutorial – 014) Python pass statement In this article, you’ll learn about pass statement. It is used as a placeholder for future implementation of functions, loops, etc.   What is pass statement in Python? In Python programming, the pass statement is a null statement. The difference between a comment and a pass statement in Python is that while the interpreter …