Python – Introduction

Python Basics for Beginners – Python | Introduction

  Python Basics for Beginners – Python | Introduction   Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages. Python is Interpreted − Python is processed at runtime …

Python tutorials for Business Analyst – Python Namespace and Scope

(Python Tutorial – 009) Python Namespace and Scope In this tutorial, you will learn about namespace, mapping from names to objects, and scope of a variable.   What is Name in Python? If you have ever read ‘The Zen of Python’ (type import this in the Python interpreter), the last line states, Namespaces are one honking great idea …

Python tutorials for Business Analyst – Python Operators

(Python Tutorial – 008) Python Operators In this tutorial, you’ll learn everything about different types of operators in Python, their syntax and how to use them with examples. What are operators in python? Operators are special symbols in Python that carry out arithmetic or logical computation. The value that the operator operates on is called …

Python tutorials for Business Analyst – Python Input, Output and Import

(Python Tutorial – 007) Python Input, Output and Import This tutorial focuses on two built-in functions print() and input() to perform I/O task in Python. Also, you will learn to import modules and use them in your program. Python provides numerous built-in functions that are readily available to us at the Python prompt. Some of the functions …

Python tutorials for Business Analyst – Python Type Conversion and Type Casting

(Python Tutorial – 006) Python Type Conversion and Type Casting In this article, you will learn about the Type conversion and uses of type conversion. Type Conversion The process of converting the value of one data type (integer, string, float, etc.) to another data type is called type conversion. Python has two types of type …

Python tutorials for Business Analyst – Python Data Types

(Python Tutorial – 0o5) Python Data Types In this tutorial, you will learn about different data types you can use in Python. Data types in Python Every value in Python has a datatype. Since everything is an object in Python programming, data types are actually classes and variables are instance (object) of these classes. There …

Python tutorials for Business Analyst – Python Variables, Constants and Literals

(Python Tutorial – 004) Python Variables, Constants and Literals In this tutorial, you will learn about Python variables, constants, literals and their use cases. End-to-End Applied Machine Learning and Data Science Recipes Python Variables A variable is a named location used to store data in the memory. It is helpful to think of variables as …

Python tutorials for Business Analyst – Python Keywords and Identifiers

(Python Tutorial – 003) Python Keywords and Identifiers In this tutorial, you will learn about keywords (reserved words in Python) and identifiers (names given to variables, functions, etc.). Python Keywords Keywords are the reserved words in Python. We cannot use a keyword as a variable name, function name or any other identifier. They are used to define the syntax …

Python tutorials for Business Analyst – Python Statement, Indentation and Comments

(Python Tutorial – 002) Python Statement, Indentation and Comments In this tutorial, you will learn about Python statements, why indentation is important and use of comments in programming. Python Statement Instructions that a Python interpreter can execute are called statements. For example, a = 1 is an assignment statement. if statement, for statement, while statement, etc. are other kinds of statements which will …

Python Tutorials for Business Analyst – How to Get Started With Python?

(Python Tutorial – 001) Python Tutorials for Business Analyst – How to Get Started With Python  In this tutorial, you will learn to install and run Python on your computer. Once we do that, we will also write our first Python program. Python is a cross-platform programming language, which means that it can run on …