Satyam Aaditya's Blog

Satyam Aaditya's Blog

Follow
Follow
homePythonHow-ToJavascriptDonateDSAJava
Series

Learn Python

This Python programming series is designed to introduce beginners to the basics of Python programming. Throughout this series, you'll work on hands-on coding projects and practice exercises.

Articles in this series

Introduction to Python

Apr 15, 20235 min read175 views

Learn Python Programming Language · What is Python? Python is a high-level, interpreted programming language that is widely used for general-purpose...

Introduction to Python

Python Getting Started

Apr 16, 20232 min read58 views

How to install and run Python on your PC? · Python Install Installing Python on Windows: Go to the official Python website...

Python Getting Started

Python Syntax

Apr 17, 20234 min read40 views

Set of rules in Python language? · Python is a popular high-level programming language that is known for its simplicity and ease of use. It is a...

Python Syntax

Python Casting

Apr 18, 20232 min read83 views

Process of converting a variable from one data type to another. · Python casting refers to the process of converting a variable from one data type to...

Python Casting

Python String

Apr 20, 20233 min read47 views

Sequence of characters enclosed in single or double quotes. · Strings are an essential part of Python programming. A string is a sequence of characters...

Python String

Python Lists

Apr 20, 20233 min read34 views

Lists are used to store a collection of items that can be of different data types. · Python lists are one of the most versatile and commonly used data...

Python Lists