Blog

Blog

Variable Naming Convention & Coding Style (PEP8)
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! Let’s start with the Naming Convention and Best Practices in Python (PEP8)… 🖥️ Variables Naming Convention & Coding Style in Python (PEP8 + Best Practices) The examples
Tags: ,
Object References & Identity in Python
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! Let’s start with Object References in Python… 🖥️ Variables in Python: Object References and Object Identity What is actually happening, when you make a variable assignment? This
Tags: ,
Variables in Python - Definition & Declaration
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! Let’s start with Variables in Python… 🖥️ What are variables? How to Create a Variable in Python? More complex programs need a way of labelling data with
Tags: ,
Data Types Conversion (Casting)
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! 🖥️ Conversion between Data Types in Python (Casting) In Python, Data Types are used to classify one particular type of data, determining the values that you can
Tags: ,
Sets in Python (Overview)
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! 🖥️ Set in Python – Data Types in Python In Python, Set is an unordered collection of data type that is: iterable, mutable and has unique elements.
Tags: ,
Tuple in Python (Overview)
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! 🖥️ Tuple in Python – Data Types in Python Tuple in Python is an ordered collection of objects, much like List in Python. The sequence of values
Tags: ,
Dictionary in Python (Overview)
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! 🖥️ Dictionary in Python – Data Types in Python Dictionary in Python is an unordered and indexed collection of values, used to store data. Unlike any other
Tags: ,
List in Python (Overview)
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! 🖥️ List in Python – Data Types in Python Now that you have understood numbers and strings, Let’s go through the relatively more complex data types in
Tags: ,
Strings in Python
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z! 🖥️ Strings in Python – Data Types in Python The string type in Python, is represented by str class. Strings are immutable, which means that their content
Tags: ,