MeshWorld India LogoMeshWorld.
Back to Tags
Topic View

#Python.

Python programming tutorials covering scripting, automation, data handling, and building Python applications.

32 posts
Jan 2021 – Jul 2026
Filed under this topic
How to Train a Local LLM on CPU Only (2026 Fact Check & Guide)
AI5 min read

How to Train a Local LLM on CPU Only (2026 Fact Check & Guide)

Fact check: Yes, you can fine-tune small language models on CPU without a GPU. Learn how to train LoRA adapters locally using llama.cpp and Hugging Face PEFT.

Darsh Jariwala
Darsh Jariwala
Useful Python Scripts to Automate Boring PDF Tasks
python5 min read

Useful Python Scripts to Automate Boring PDF Tasks

Ditch manual PDF editors. Learn how to merge, split, extract tables, redact sensitive data, and audit massive PDF directories using 5 simple Python scripts.

Arjun
Arjun
PyTorch & CUDA ML Operations Cheatsheet: The Complete Reference
pytorch5 min read

PyTorch & CUDA ML Operations Cheatsheet: The Complete Reference

Optimize deep learning workloads: PyTorch tensor manipulations, CUDA memory management, multi-GPU training, and mixed precision.

Rachel
Rachel
Pandas Dataframe & Operations Cheatsheet: The Complete Reference
pandas5 min read

Pandas Dataframe & Operations Cheatsheet: The Complete Reference

A comprehensive reference for Pandas: dataframes, series, indexing, merging, grouping, aggregations, and high-performance optimizations.

Rachel
Rachel
NumPy Array Manipulations Cheatsheet: The Complete Reference
numpy5 min read

NumPy Array Manipulations Cheatsheet: The Complete Reference

Master NumPy: array initialization, indexing, slicing, broadcasting, linear algebra, and performance tuning.

Rachel
Rachel
FastAPI & Pydantic v2 Boilerplate Cheatsheet: The Complete Reference
fastapi5 min read

FastAPI & Pydantic v2 Boilerplate Cheatsheet: The Complete Reference

Build high-performance APIs: FastAPI routers, Pydantic v2 models, dependency injection, async database integration, and security.

Rachel
Rachel
uv Cheat Sheet: The Fast Python Package Manager (2026)
Cheatsheet5 min read

uv Cheat Sheet: The Fast Python Package Manager (2026)

Complete uv reference — install packages, manage projects, run scripts, pin Python versions, and migrate from pip, poetry, and pyenv with working commands.

Rachel
Rachel
Ollama Cheat Sheet: Local LLMs, Models, API & Integration (2026)
Cheatsheet5 min read

Ollama Cheat Sheet: Local LLMs, Models, API & Integration (2026)

Complete Ollama reference — pull and run local LLMs, API endpoints, Python/JS integration, multimodal models, model management, and GPU setup in 2026.

Darsh Jariwala
Darsh Jariwala
mise Cheat Sheet: Unified Runtime & Tool Manager (2026)
Cheatsheet5 min read

mise Cheat Sheet: Unified Runtime & Tool Manager (2026)

Complete mise reference — install and switch Node, Python, Rust, Go versions, manage tools, activate via shell, Docker, and CI/CD with working commands.

Jena
Jena
Python Type Hints: A Practical Guide for Real Codebases
Python5 min read

Python Type Hints: A Practical Guide for Real Codebases

Use Python type hints effectively with annotations, generics, and Pydantic. Learn to avoid common production gotchas and master tools like mypy and pyright.

Rachel
Rachel
Python Async/Await: The Complete Guide for Developers
Python5 min read

Python Async/Await: The Complete Guide for Developers

Master Python asyncio, including async/await syntax, event loops, and concurrent execution. Learn real-world patterns to build production-ready async systems.

Rachel
Rachel
How to Fix LangGraph RecursionLimit Error (Solved)
AI5 min read

How to Fix LangGraph RecursionLimit Error (Solved)

Is your LangGraph agent crashing with a 'RecursionLimit' error? Learn how to fix infinite agent loops and properly increase recursion limits in 2026.

Vishnu
Vishnu
Python 3 Cheat Sheet: Syntax, Data Structures & Best Practices (2026)
Cheatsheet5 min read

Python 3 Cheat Sheet: Syntax, Data Structures & Best Practices (2026)

Complete Python 3 reference covering primitives, lists, dicts, sets, control flow, functions, classes, File I/O, exceptions, and standard libraries.

Vishnu
Vishnu
How to Set Up a .env File and Stop Leaking Secrets
HowTo5 min read

How to Set Up a .env File and Stop Leaking Secrets

Learn how to set up .env files in Node.js, Python, and Docker. Avoid common mistakes that expose API keys and manage your secrets safely in production.

Vishnu
Vishnu
How to Install Python on Ubuntu, macOS and Windows
HowTo5 min read

How to Install Python on Ubuntu, macOS and Windows

Learn how to install Python 3 on Ubuntu, macOS, and Windows using pyenv and Homebrew. Includes setup for pip, virtual environments, and version switching.

Vishnu
Vishnu
Python Virtual Environments: venv, uv, and When to Use Each
Python5 min read

Python Virtual Environments: venv, uv, and When to Use Each

Keep Python projects isolated with virtual environments. Learn how to set up venv and uv, manage dependencies, and choose the right tool for your 2026 workflow.

Vishnu
Vishnu
Regex Cheat Sheet: Patterns, Groups & Real-World Examples
Cheatsheet5 min read

Regex Cheat Sheet: Patterns, Groups & Real-World Examples

Master regular expressions with this guide to anchors, groups, lookaheads, and quantifiers. Includes real-world patterns for emails, URLs, and passwords.

Vishnu
Vishnu
Python List Comprehensions: Syntax, Examples & Tips
Python5 min read

Python List Comprehensions: Syntax, Examples & Tips

Master Python list comprehensions with clear examples. Learn when to use them for cleaner code, how to add filters, and when a regular loop is still better.

Vishnu
Vishnu
Python Arithmetic Operators: A Beginner's Guide
Python5 min read

Python Arithmetic Operators: A Beginner's Guide

Master Python arithmetic operators including addition, floor division, and modulo. Learn operator precedence and see clear examples for each math symbol.

Vishnu
Vishnu
Python Comparison Operators: Mastering Equality & Logic
Python5 min read

Python Comparison Operators: Mastering Equality & Logic

Learn how to compare values in Python using == and != operators. Master equality checking with clear code examples, if-statements, and Boolean logic.

Vishnu
Vishnu
Python Relational Operators: Comparing Values Like a Pro
Python5 min read

Python Relational Operators: Comparing Values Like a Pro

Master Python relational operators to compare values and variables. Learn boolean logic with clear examples and write better conditional statements in Python.

Vishnu
Vishnu
Python Ternary Operator: Writing Cleaner if-else in One Line
Python5 min read

Python Ternary Operator: Writing Cleaner if-else in One Line

Master the Python ternary operator for elegant one-liner if-else statements. Learn the syntax, see practical examples, and write cleaner, more Pythonic code.

Vishnu
Vishnu
Python - LinkedIn Skill Assessments Quizzes with Answers
Python5 min read

Python - LinkedIn Skill Assessments Quizzes with Answers

Ace the LinkedIn Python skill assessment with verified questions and answers covering data types, functions, OOP, modules, and error handling. Prepare for the Python certification quiz and earn your badge.

Darsh Jariwala
Darsh Jariwala
Identify whether the number is Even or Odd in Python
Python5 min read

Identify whether the number is Even or Odd in Python

Learn how to identify whether a number is even or odd in Python using the modulo operator. Includes algorithm, code example, and step-by-step explanation for Python beginners learning programming fundamentals.

Vishnu
Vishnu
How to Display Multiplication Tables in Python
Python5 min read

How to Display Multiplication Tables in Python

Learn to generate multiplication tables in Python using for loops and the range() function. A perfect exercise for beginners to master iterative logic.

Vishnu
Vishnu
How to Generate Random Numbers in Python: A Quick Guide
Python5 min read

How to Generate Random Numbers in Python: A Quick Guide

Learn how to generate random integers and floats in Python using the random library. Master randint() and random() functions with simple code examples.

Vishnu
Vishnu
How to Check if a Variable is an Integer in Python
Python5 min read

How to Check if a Variable is an Integer in Python

Learn how to check if a variable is an integer in Python using the type() and isinstance() functions. Essential for data validation and type-safe coding.

Vishnu
Vishnu
Swapping Variable Values in Python
Python5 min read

Swapping Variable Values in Python

Discover multiple ways to swap the values of two variables in Python, including the elegant tuple unpacking method and the traditional third-variable approach.

Vishnu
Vishnu
Get Python Version via Command Line
Python5 min read

Get Python Version via Command Line

Learn how to check your installed Python version via the command line on Windows, macOS, and Linux, using python --version and sys.version commands.

Vishnu
Vishnu
How to Find String Length in Python Using len()
Program5 min read

How to Find String Length in Python Using len()

Learn how to find the length of any string in Python using the built-in len() function. Understand how it counts characters, spaces, and special symbols.

Vishnu
Vishnu
Program to Print Hello, World! in Python
Python5 min read

Program to Print Hello, World! in Python

Program to Print Hello, World! in Python

Vishnu
Vishnu
Python Introduction
Python5 min read

Python Introduction

A comprehensive introduction to the Python programming language covering its features, advantages, and real-world applications. Learn why Python is essential for web development, data science, and automation.

Vishnu
Vishnu

Related Topics

Discover more topics that complement what you've been reading about.