Day: July 11, 2020

Python tutorials for Business Analyst – Python Sets

(Python Tutorial – 026) Python Sets In this tutorial, you’ll learn everything about Python sets; how they are created, adding or removing elements from them, and all operations performed on sets in Python. A set is an unordered collection of items. Every set element is unique (no duplicates) and must be immutable (cannot be changed). …

Python tutorials for Business Analyst – Python Strings

(Python Tutorial – 026) Python Strings In this tutorial you will learn to create, format, modify and delete strings in Python. Also, you will be introduced to various string operations and functions.   What is String in Python? A string is a sequence of characters. A character is simply a symbol. For example, the English …

Python tutorials for Business Analyst – Python Tuple

(Python Tutorial – 025) Python Tuple In this article, you’ll learn everything about Python tuples. More specifically, what are tuples, how to create them, when to use them and various methods you should be familiar with.   A tuple in Python is similar to a list. The difference between the two is that we cannot change …

Python tutorials for Business Analyst – Python List

(Python Tutorial – 024) Python List In this article, we’ll learn everything about Python lists, how they are created, slicing of a list, adding or removing elements from them and so on.   Python offers a range of compound data types often referred to as sequences. List is one of the most frequently used and …

Python tutorials for Business Analyst – Python Numbers, Type Conversion and Mathematics

(Python Tutorial – 023) Python Numbers, Type Conversion and Mathematics In this article, you’ll learn about the different numbers used in Python, how to convert from one data type to the other, and the mathematical operations supported in Python. Number Data Type in Python Python supports integers, floating-point numbers and complex numbers. They are defined …