Tagged articles
113 articles
Page 1 of 2
Lisa Notes
Lisa Notes
Mar 25, 2026 · Fundamentals

Java Basics: Encryption and Multiplication Table Examples for Beginners

This tutorial walks through two Java examples—a simple Caesar‑style encryption/decryption program that shifts letters by four positions and a nested‑loop implementation of the 9×9 multiplication table—explaining the logic, code, and output step by step.

Loopsencryptionjava
0 likes · 8 min read
Java Basics: Encryption and Multiplication Table Examples for Beginners
Lisa Notes
Lisa Notes
Mar 22, 2026 · Fundamentals

Mastering Java Selection Statements: If, Else‑If, and Switch Explained

This tutorial walks through Java's selection structures—including if, if‑else, if‑else‑if, nested if, and switch—detailing their syntax, execution flow, example code, output results, and key differences, helping beginners write correct and portable conditional logic.

Control Flowif statementjava
0 likes · 16 min read
Mastering Java Selection Statements: If, Else‑If, and Switch Explained
Lisa Notes
Lisa Notes
Mar 21, 2026 · Fundamentals

Python String Basics: Common Techniques and Examples

This note explains how to declare Python strings with various quotes, embed quotes inside strings, use escape sequences, and apply raw strings and f‑strings, providing clear code snippets and their outputs for each case.

Escape CharactersFormatted StringPython
0 likes · 4 min read
Python String Basics: Common Techniques and Examples
Lisa Notes
Lisa Notes
Mar 16, 2026 · Fundamentals

Java Basics: Variables and Constants Explained from Scratch

This note introduces Java constants and variables, covering their definitions, naming conventions, declaration syntax, initialization rules, multiple declarations, and how constants differ from mutable variables through concrete code examples.

ConstantsVariablesjava
0 likes · 7 min read
Java Basics: Variables and Constants Explained from Scratch
Lisa Notes
Lisa Notes
Mar 15, 2026 · Fundamentals

Java Fundamentals: A Beginner’s Guide to Identifiers and Keywords

This note explains Java identifiers—allowed characters, first‑character rules, valid and invalid examples—lists all language keywords that cannot be reused as names, and outlines practical naming conventions for classes, methods, constants, and packages to improve code readability.

Identifiersjavakeywords
0 likes · 6 min read
Java Fundamentals: A Beginner’s Guide to Identifiers and Keywords
Lisa Notes
Lisa Notes
Mar 11, 2026 · Fundamentals

Master Python if/else Statements with Practical Examples

This tutorial explains Python's selection structure by walking through three hands‑on exercises—checking if a number exceeds 16, determining odd or even, and calculating the day of the year (including leap‑year logic)—complete with code snippets and sample output.

Control FlowPythonexample-code
0 likes · 4 min read
Master Python if/else Statements with Practical Examples
Lisa Notes
Lisa Notes
Mar 9, 2026 · Fundamentals

Learn Python from Scratch: Using if and if‑else Statements

This tutorial explains Python's three program structures, then details the syntax and execution flow of single‑branch if statements and double‑branch if‑else statements with concrete code examples and their corresponding outputs.

Control FlowPythonTutorial
0 likes · 4 min read
Learn Python from Scratch: Using if and if‑else Statements
Lisa Notes
Lisa Notes
Mar 5, 2026 · Fundamentals

Python Basics: From Zero to Core Concepts with Practical Code Examples

This tutorial walks through essential Python fundamentals—including comments, naming conventions, variable assignment, input/output functions, common data types, type conversion, and arithmetic, assignment, relational, and membership operators—providing clear explanations and concrete code snippets for each concept.

Data TypesInput/OutputPython
0 likes · 20 min read
Python Basics: From Zero to Core Concepts with Practical Code Examples
Lisa Notes
Lisa Notes
Feb 28, 2026 · Fundamentals

Master Python Assignment Operators: From Simple = to Compound Forms

This tutorial explains Python's simple and compound assignment operators, showing how = assigns values and how operators like +=, -=, *=, /=, %=, **=, and //= combine arithmetic with assignment, illustrated with concrete code examples and their output, while noting Python lacks ++/--.

Code ExamplePythonassignment-operator
0 likes · 4 min read
Master Python Assignment Operators: From Simple = to Compound Forms
Lisa Notes
Lisa Notes
Feb 27, 2026 · Fundamentals

How Python’s + Operator Concatenates Strings (and Why Numbers Fail)

The article explains that in Python the + operator joins two strings into one, demonstrates this with code examples, and warns that adding a number to a string raises a TypeError, illustrating the rule with sample output and error messages.

Arithmetic operatorsPythonString concatenation
0 likes · 3 min read
How Python’s + Operator Concatenates Strings (and Why Numbers Fail)
Lisa Notes
Lisa Notes
Feb 14, 2026 · Fundamentals

Why Comments Matter in Python: A Beginner’s Guide

This article explains the importance of comments in Python, describing how they improve code readability for collaborators and future maintenance, and outlines the two comment styles—single‑line with # and multi‑line with triple quotes—along with practical examples.

Pythoncode readabilitycomments
0 likes · 3 min read
Why Comments Matter in Python: A Beginner’s Guide
Python Programming Learning Circle
Python Programming Learning Circle
Sep 13, 2025 · Fundamentals

Master Python String Manipulation: 11 Essential Techniques

This guide walks you through eleven practical Python string operations—including case conversion, whitespace trimming, numeric checks, character replacement, splitting, prefix/suffix testing, formatting, encoding, joining, and binary conversion—each illustrated with clear code examples you can run instantly.

Pythonprogramming basics
0 likes · 6 min read
Master Python String Manipulation: 11 Essential Techniques
php Courses
php Courses
Jul 7, 2025 · Fundamentals

Master the Classic C++ Hello World: Step-by-Step Code Walkthrough

Learn how to write, compile, and run a basic C++ Hello World program, with a complete code listing, line-by-line explanations of each statement, common variations, compilation commands, and tips for understanding the program’s structure and output.

Code WalkthroughCompilationHello World
0 likes · 6 min read
Master the Classic C++ Hello World: Step-by-Step Code Walkthrough
Python Programming Learning Circle
Python Programming Learning Circle
Jun 6, 2025 · Fundamentals

Master Python Basics: Variables, Data Types, Operators, and Control Flow

This guide introduces Python's core fundamentals, covering its concise syntax, commenting styles, dynamic variables, primary data types, input/output functions, a full range of operators, control‑flow statements, and essential data structures such as lists, tuples, dictionaries and sets, complete with examples and visual illustrations.

Control FlowData StructuresPython
0 likes · 9 min read
Master Python Basics: Variables, Data Types, Operators, and Control Flow
php Courses
php Courses
May 23, 2025 · Fundamentals

Getting Started with Go: Hello World and Basic Syntax

This article introduces the classic “Hello, World!” program in Go, explains the language’s basic syntax—including package declaration, imports, functions, variables, constants, data types, control structures, loops, and comments—and provides instructions for running and formatting Go code.

Control structuresGoHello World
0 likes · 8 min read
Getting Started with Go: Hello World and Basic Syntax
Java Captain
Java Captain
Apr 29, 2025 · Fundamentals

How to Directly Output Arrays, Traverse Strings, and Read Keyboard Input in Java

This article demonstrates how to print an int array using Arrays.toString, presents two methods for iterating over a string—via toCharArray and charAt—and explains proper usage of Scanner methods to read tokens, lines, and integers from the console, including handling of newline characters.

ArraysString Traversalinput
0 likes · 3 min read
How to Directly Output Arrays, Traverse Strings, and Read Keyboard Input in Java
Python Programming Learning Circle
Python Programming Learning Circle
Apr 24, 2025 · Fundamentals

50 Essential Python Built-in Functions and Their Usage

This article introduces fifty essential Python built-in functions, covering type conversion, numeric operations, sequence handling, I/O, string manipulation, and utility functions, each with concise explanations and code examples to help readers quickly understand and apply these fundamental tools in their programs.

Code ExamplesData Typesbuilt-in functions
0 likes · 9 min read
50 Essential Python Built-in Functions and Their Usage
Python Programming Learning Circle
Python Programming Learning Circle
Apr 23, 2025 · Fundamentals

10 Classic Python Operations: Variables, Type Conversion, Strings, Lists, Loops, Conditionals, Functions, Exceptions, File I/O, and Modules

This article introduces ten essential Python techniques—including variable assignment and swapping, data type conversion, string manipulation, list handling, loop constructs, conditional statements, function definition, exception handling, file operations, and module imports—providing clear explanations and code examples to help beginners strengthen their programming foundation.

Control FlowData TypesFile I/O
0 likes · 10 min read
10 Classic Python Operations: Variables, Type Conversion, Strings, Lists, Loops, Conditionals, Functions, Exceptions, File I/O, and Modules
php Courses
php Courses
Mar 21, 2025 · Fundamentals

Understanding Python Functions: Definition, Syntax, and Usage

This article explains what Python functions are, how to define them with the def keyword, demonstrates calling functions, returning values, and covers various parameter types with clear code examples to help readers write clean and reusable code.

PythonReturn valuesfunctions
0 likes · 5 min read
Understanding Python Functions: Definition, Syntax, and Usage
Test Development Learning Exchange
Test Development Learning Exchange
Mar 2, 2025 · Fundamentals

Common Python Built‑in Functions with Examples

This article introduces Python's most frequently used built-in functions, such as len, type, print, range, sum, and others, providing clear explanations, practical use cases, and complete code examples to help readers understand and apply these essential tools for efficient programming.

Code ExamplesPythonTutorial
0 likes · 13 min read
Common Python Built‑in Functions with Examples
Test Development Learning Exchange
Test Development Learning Exchange
Feb 22, 2025 · Fundamentals

Python Input/Output and Data Type Conversion Tutorial

This article introduces Python's input and output functions and demonstrates various data type conversion techniques through practical code examples, helping readers master essential programming fundamentals for building functional applications and improves their ability to handle user interaction and data processing.

Input/OutputPythondata type conversion
0 likes · 7 min read
Python Input/Output and Data Type Conversion Tutorial
Test Development Learning Exchange
Test Development Learning Exchange
Feb 21, 2025 · Fundamentals

Understanding Variable Definition and Usage in Python

This article introduces Python variable fundamentals, explaining how to define, assign, and manipulate variables of various types—including integers, floats, strings, booleans, lists, and dictionaries—through ten clear examples that illustrate common programming scenarios.

PythonTutorialVariables
0 likes · 5 min read
Understanding Variable Definition and Usage in Python
Test Development Learning Exchange
Test Development Learning Exchange
Feb 7, 2025 · Fundamentals

Python Basics: Print, Variables, Data Types, Control Flow, Functions, and More

This comprehensive tutorial introduces Python fundamentals, covering print statements, variable definition and assignment, data type conversion, conditional and loop structures, function creation and invocation, input handling, comments, indentation rules, program exit methods, operators, slicing, collections, file I/O, exception handling, and module imports.

Control FlowData TypesPython
0 likes · 33 min read
Python Basics: Print, Variables, Data Types, Control Flow, Functions, and More
Python Programming Learning Circle
Python Programming Learning Circle
Jan 8, 2025 · Fundamentals

Python Built-in Functions and Common Usage Guide

This article provides a comprehensive overview of Python's built-in functions, data types, numeric conversions, mathematical operations, data structures, string handling, scope utilities, iterator tools, dynamic code execution, and file and module operations, complete with practical code examples for each concept.

Data TypesPythonTutorial
0 likes · 17 min read
Python Built-in Functions and Common Usage Guide
Test Development Learning Exchange
Test Development Learning Exchange
Dec 7, 2024 · Fundamentals

Common Python Programming Problems and Solutions

This article presents a collection of 25 frequently encountered Python programming tasks, ranging from printing "Hello, World!" to checking file existence, each accompanied by concise explanations and ready-to-use code examples that illustrate fundamental concepts and techniques.

AlgorithmsCode ExamplesPython
0 likes · 14 min read
Common Python Programming Problems and Solutions
Test Development Learning Exchange
Test Development Learning Exchange
Nov 1, 2024 · Fundamentals

Comprehensive Python Basics: Variables, Data Types, Control Structures, Functions, OOP, Standard Library, and More

This article provides a comprehensive Python tutorial covering variables, data types, control structures, functions, classes, standard library modules, file I/O, exception handling, comprehensions, generators, decorators, modules, virtual environments, coding style, and Git version control, complete with example code snippets.

Control structuresPythonStandard Library
0 likes · 14 min read
Comprehensive Python Basics: Variables, Data Types, Control Structures, Functions, OOP, Standard Library, and More
Test Development Learning Exchange
Test Development Learning Exchange
Sep 11, 2024 · Fundamentals

Python Introduction and Basic Syntax Tutorial

This tutorial introduces Python, explains how to install it, and covers fundamental syntax including comments, variables, data types, string manipulation, collections, control flow, functions, modules, exception handling, file operations, classes, comprehensions, and common utilities, providing clear code examples for each concept.

PythonTutorialprogramming basics
0 likes · 7 min read
Python Introduction and Basic Syntax Tutorial
Test Development Learning Exchange
Test Development Learning Exchange
Jul 11, 2024 · Fundamentals

Master Python Control Flow: If, For, While Explained with Real Examples

This guide walks beginners through Python's control flow structures—if statements, for loops, and while loops—explaining their syntax, demonstrating multiple conditional checks, iteration over sequences, and combined usage with clear code examples that illustrate filtering, accumulation, and prime number detection.

Control Flowfor loopif statement
0 likes · 4 min read
Master Python Control Flow: If, For, While Explained with Real Examples
Test Development Learning Exchange
Test Development Learning Exchange
Jun 16, 2024 · Fundamentals

Python Basics: Common Questions, Syntax, Data Types, Control Structures, Functions, Modules, and Error Handling

This article provides a comprehensive overview of Python fundamentals for beginners, covering the language’s purpose, basic syntax, data types, control structures, functions, modules, exception handling, input/output, common built‑in functions, advanced concepts like list comprehensions and generators, and typical runtime errors with troubleshooting tips.

Control structuresError HandlingPython
0 likes · 8 min read
Python Basics: Common Questions, Syntax, Data Types, Control Structures, Functions, Modules, and Error Handling
Python Programming Learning Circle
Python Programming Learning Circle
May 20, 2024 · Fundamentals

30 Common Python Code Examples

This article presents a curated collection of 30 practical Python code snippets, ranging from basic algorithms like bubble sort and factorial calculation to file system operations, string manipulations, and utility functions such as generating calendars and checking leap years.

AlgorithmsPythonprogramming basics
0 likes · 4 min read
30 Common Python Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
May 11, 2024 · Fundamentals

Understanding Python if...else Statements with Practical Examples

This article explains Python's if...elif...else conditional control structure, presents its basic syntax, and provides a series of clear examples ranging from simple number checks to more complex tasks like recursive Fibonacci, bubble sort, a guessing game, age classification, and bank account balance validation.

Pythonconditional statementsif-else
0 likes · 6 min read
Understanding Python if...else Statements with Practical Examples
Java Captain
Java Captain
Mar 1, 2024 · Frontend Development

A 5‑Minute Introduction to JavaScript: Basics, Core Features, and Quick Start

This article provides a concise five‑minute overview of JavaScript, covering its origins, dynamic typing, prototype‑based OOP, browser compatibility, essential syntax such as variables, conditionals, loops, functions, and practical use cases like dynamic content, interactivity, game development, and SPA creation, plus learning resources.

JavaScriptTutorialWeb Development
0 likes · 4 min read
A 5‑Minute Introduction to JavaScript: Basics, Core Features, and Quick Start
Java Captain
Java Captain
Mar 1, 2024 · Fundamentals

Getting Started with Java: Fundamentals for Beginners

This article introduces Java’s origins, key characteristics, environment setup, basic syntax, object‑oriented concepts, exception handling, common libraries, and simple practice projects, providing beginners with a comprehensive foundation to start programming in Java.

Exception HandlingIDEOOP
0 likes · 5 min read
Getting Started with Java: Fundamentals for Beginners
Python Programming Learning Circle
Python Programming Learning Circle
Feb 18, 2024 · Fundamentals

Hello World Examples in 12 Popular Programming Languages

This article showcases the correct "Hello World" syntax for twelve widely used programming languages, providing clear code snippets and brief explanations to help beginners understand the fundamental first program across Java, C, Python, C++, C#, Visual Basic .NET, JavaScript, PHP, Objective‑C, SQL, Ruby, and MATLAB.

Hello WorldPythonc++
0 likes · 4 min read
Hello World Examples in 12 Popular Programming Languages
Python Programming Learning Circle
Python Programming Learning Circle
Jan 23, 2024 · Fundamentals

Python Essentials: 60 Frequently Used Built-in Functions and Techniques

This article presents a comprehensive collection of 60 frequently used Python built-in functions and techniques, covering numeric operations, string handling, data structures, function definitions, class utilities, and useful tools, each illustrated with clear code examples and explanations for practical programming.

Data StructuresPythonprogramming basics
0 likes · 22 min read
Python Essentials: 60 Frequently Used Built-in Functions and Techniques
Programmer DD
Programmer DD
Dec 7, 2023 · Frontend Development

Why JavaScript Is Essential for Modern Web Development: A Beginner’s Guide

This article introduces JavaScript’s origins, core characteristics, and versatile roles—from front‑end scripting in browsers to server‑side execution with Node.js—while explaining its event‑driven model, variable declarations, DOM interaction, and asynchronous programming features for beginners.

JavaScriptWeb Developmentevent loop
0 likes · 6 min read
Why JavaScript Is Essential for Modern Web Development: A Beginner’s Guide
Python Programming Learning Circle
Python Programming Learning Circle
Nov 15, 2023 · Fundamentals

30 Minimal Python Tasks for Beginners

This article presents thirty concise Python exercises covering common tasks such as duplicate detection, anagram checking, memory usage, list manipulation, dictionary merging, and more, each illustrated with clear code examples to help beginners practice and deepen their programming skills.

AlgorithmsData Structurescode snippets
0 likes · 14 min read
30 Minimal Python Tasks for Beginners
Test Development Learning Exchange
Test Development Learning Exchange
Nov 7, 2023 · Fundamentals

Master Python’s Core Data Types: Numbers, Strings, Lists, and More

This guide introduces Python’s fundamental data types—including integers, floats, complex numbers, strings, booleans, lists, tuples, dictionaries, sets, NoneType, enums, functions, modules, and classes—explaining their characteristics and providing concise code examples that demonstrate creation, manipulation, and common operations for each type.

Data TypesPythonTutorial
0 likes · 7 min read
Master Python’s Core Data Types: Numbers, Strings, Lists, and More
Python Programming Learning Circle
Python Programming Learning Circle
Sep 1, 2023 · Fundamentals

Python Basics: Variables, Data Types, Control Flow, Functions, and Common Operations

This article provides a comprehensive introduction to Python fundamentals, covering language features, variable handling, data types such as numbers, strings, lists, tuples, dictionaries, as well as control structures, loops, functions, exception handling, file I/O, and time processing with practical code examples.

Control FlowData TypesVariables
0 likes · 15 min read
Python Basics: Variables, Data Types, Control Flow, Functions, and Common Operations
Model Perspective
Model Perspective
Nov 13, 2022 · Fundamentals

Why Python Is Key for Modeling and How to Install Anaconda Quickly

This guide explains why Python is vital for mathematical modeling, outlines its key features, and provides a step‑by‑step tutorial for installing Anaconda and launching Jupyter Notebook, enabling beginners to write and run their first Python code quickly.

AnacondaPythoninstallation guide
0 likes · 4 min read
Why Python Is Key for Modeling and How to Install Anaconda Quickly
Python Programming Learning Circle
Python Programming Learning Circle
Nov 1, 2022 · Fundamentals

Python Student Information Management System Tutorial with Complete Source Code

This article presents a step‑by‑step tutorial for building a console‑based student information management system in Python, covering system design, functional requirements, detailed function implementations for adding, deleting, modifying, searching, and displaying records, and provides the full source code with execution screenshots.

CLIData StructuresPython
0 likes · 10 min read
Python Student Information Management System Tutorial with Complete Source Code
Model Perspective
Model Perspective
May 28, 2022 · Fundamentals

Master Python Built-in Functions and Custom Function Basics

This article introduces Python's built-in functions such as type, len, sum, round, and sorted, explains data type conversion utilities, demonstrates numeric conversions, and provides a step‑by‑step guide to defining and using custom functions with default arguments.

Custom FunctionsPythonbuilt-in functions
0 likes · 5 min read
Master Python Built-in Functions and Custom Function Basics
Python Programming Learning Circle
Python Programming Learning Circle
Apr 7, 2022 · Fundamentals

Commonly Used Python Functions: A Quick Reference Guide

This article compiles over 100 commonly used Python functions across twelve topics—from basic I/O and data structures to threading and decorators—providing concise code examples to help beginners quickly recall function names and their purposes for more efficient coding.

Pythonfunctionsprogramming basics
0 likes · 9 min read
Commonly Used Python Functions: A Quick Reference Guide
Python Programming Learning Circle
Python Programming Learning Circle
Jul 30, 2021 · Fundamentals

Understanding Basic Python Programming Concepts: Code, Conditionals, Loops, Variables, Functions, Modules, and Classes

This article introduces fundamental Python programming concepts by using everyday analogies, covering what code is, conditional statements, loops, variables, functions with parameters, modules, and classes, and provides clear example code snippets to illustrate each topic for beginners.

ConditionalsLoopsModules
0 likes · 15 min read
Understanding Basic Python Programming Concepts: Code, Conditionals, Loops, Variables, Functions, Modules, and Classes
Python Programming Learning Circle
Python Programming Learning Circle
May 13, 2021 · Fundamentals

Drawing a Corgi and a Heart with Python Turtle

This tutorial teaches how to use Python's Turtle library to draw a corgi, a single dog illustration, and a decorative heart by explaining canvas setup, pen commands, movement functions, text insertion, and providing complete code examples for each step.

Tutorialprogramming basics
0 likes · 7 min read
Drawing a Corgi and a Heart with Python Turtle
Python Programming Learning Circle
Python Programming Learning Circle
Nov 14, 2020 · Fundamentals

Python Basics: Hello World, Data Types, Control Flow, and File I/O

This tutorial introduces Python fundamentals by demonstrating a Hello World program, explaining comments, covering numeric, string, tuple, list, set, and dictionary data types, and illustrating control flow constructs, loops, functions, command‑line arguments, and basic file read/write operations with clear code examples.

Control FlowFile I/OPython
0 likes · 11 min read
Python Basics: Hello World, Data Types, Control Flow, and File I/O
Liangxu Linux
Liangxu Linux
Sep 8, 2020 · Fundamentals

Why Learning C Is Essential: From Basics to Compilation Explained

This article introduces the importance of the C language, outlines its key features and design history, walks through a simple "Hello, World" program with detailed line‑by‑line explanations, and demystifies the compilation and execution process including preprocessing, assembly, linking, and hardware interactions such as caching.

C ProgrammingCompilationfundamentals
0 likes · 24 min read
Why Learning C Is Essential: From Basics to Compilation Explained
ITPUB
ITPUB
May 26, 2020 · Backend Development

Master Go Basics: Packages, Types, Variables, Constants, and Functions

This tutorial introduces Go's core concepts—including package structure, built‑in types, variable and constant declarations, and function definitions—explaining syntax nuances, import styles, type creation, and initialization patterns to help beginners quickly become productive in Go.

GoPackagesVariables
0 likes · 9 min read
Master Go Basics: Packages, Types, Variables, Constants, and Functions
Python Crawling & Data Mining
Python Crawling & Data Mining
May 17, 2020 · Fundamentals

Master Python’s Core Data Types: Numbers, Strings, Lists, and More

This article introduces Python’s fundamental data types—including numbers, strings, lists, tuples, sets, and dictionaries—explains their mutability, demonstrates variable assignments, type checking, and common built‑in functions with clear code examples, helping beginners quickly grasp and apply these essentials in their programs.

Data TypesPythonprogramming basics
0 likes · 9 min read
Master Python’s Core Data Types: Numbers, Strings, Lists, and More
Python Crawling & Data Mining
Python Crawling & Data Mining
May 8, 2020 · Fundamentals

Master Python Functions: From Basics to Advanced Usage

This article explains what Python functions are, why they are useful, how to define and call them, the different ways to pass parameters—including positional, keyword, default, *args and **kwargs—covers return values, variable scope, and provides numerous code examples with illustrations.

Return valuesfunctionsparameters
0 likes · 8 min read
Master Python Functions: From Basics to Advanced Usage
MaGe Linux Operations
MaGe Linux Operations
Mar 5, 2020 · Fundamentals

Unlocking Python’s Underscore: 4 Powerful Uses You Should Know

This article explains four practical ways the underscore (_) is used in Python—retrieving the last expression result, discarding unwanted values, marking private module members, and improving readability of large numeric literals—with clear code examples.

Code ExamplesPythonprogramming basics
0 likes · 5 min read
Unlocking Python’s Underscore: 4 Powerful Uses You Should Know
FunTester
FunTester
Jan 30, 2020 · Fundamentals

Master the Basics of JSON: A Beginner’s Guide to Data Exchange

This article provides a concise introduction to JSON, covering its role as a lightweight data exchange format, language independence, syntax rules, data types such as objects, arrays, strings, numbers, booleans and null, as well as file conventions and MIME type, offering practical examples for beginners.

Data ExchangeData TypesJSON
0 likes · 12 min read
Master the Basics of JSON: A Beginner’s Guide to Data Exchange
MaGe Linux Operations
MaGe Linux Operations
Feb 6, 2019 · Fundamentals

Kickstart Your Coding Journey: Master Python Basics Quickly

This article guides beginners through the essentials of Python, covering why to learn it, how to get started, core data types, operators, functions, classes, modules, and advanced features, while offering motivational advice to persist through early challenges.

Data Structuresbeginnersprogramming basics
0 likes · 6 min read
Kickstart Your Coding Journey: Master Python Basics Quickly
21CTO
21CTO
Jan 29, 2019 · Fundamentals

Master Python Basics: Data Types, Control Flow, Functions, and More in Minutes

This tutorial introduces Python 3 fundamentals—including primitive data types, operators, variables, collections, control structures, functions, classes, modules, and advanced features like generators and decorators—through concise explanations and runnable code examples that let readers quickly grasp the language's core concepts.

Data TypesPythonTutorial
0 likes · 19 min read
Master Python Basics: Data Types, Control Flow, Functions, and More in Minutes
MaGe Linux Operations
MaGe Linux Operations
Oct 30, 2018 · Frontend Development

Master Python for Web Front‑End: A Step‑by‑Step Learning Roadmap

This guide outlines a comprehensive, stage‑by‑stage roadmap for beginners to master Python fundamentals, web front‑end basics, network programming, and Python web frameworks, providing resource recommendations and difficulty ratings to help learners choose a focused path and avoid getting stuck.

Web Developmentfrontendlearning roadmap
0 likes · 5 min read
Master Python for Web Front‑End: A Step‑by‑Step Learning Roadmap
MaGe Linux Operations
MaGe Linux Operations
Oct 26, 2018 · Fundamentals

Start Python Today: A Beginner’s Guide to Core Operations

This article introduces a beginner-friendly Python course designed for undergraduates with no prior coding experience, highlighting Python's growing popularity in finance, sharing comprehensive lecture slides, and promising future updates on advanced topics like OpRisk SMA analysis and volatility derivative trading.

IntroductionUndergraduate Coursecoding
0 likes · 4 min read
Start Python Today: A Beginner’s Guide to Core Operations
ITPUB
ITPUB
May 25, 2018 · Fundamentals

Understanding Code: From Conditions to Functions with Real‑World Analogies

This tutorial explains programming fundamentals using everyday analogies, covering how code serves as a precise language for computers, the role of conditionals, loops, variables, functions, modules, and an introduction to classes, all illustrated with Python examples that model buying fruit under different scenarios.

ConditionalsLoopsModules
0 likes · 16 min read
Understanding Code: From Conditions to Functions with Real‑World Analogies
21CTO
21CTO
May 22, 2018 · Fundamentals

Master Python Basics with 17 Detailed Mind Maps – Quick Visual Guide

This article introduces a collection of 17 color‑coded mind maps that comprehensively cover Python core fundamentals, offering beginners and seasoned programmers a fast visual way to learn, review, and deepen their understanding of essential Python concepts.

Learning ResourcesPythonfundamentals
0 likes · 3 min read
Master Python Basics with 17 Detailed Mind Maps – Quick Visual Guide
21CTO
21CTO
Jan 13, 2018 · Fundamentals

Master Python Basics: Variables, Control Flow, Loops, Lists & Dictionaries

This tutorial introduces Python fundamentals, covering variables, conditional statements, while and for loops, list operations, and dictionary usage, with clear explanations and code examples to help beginners quickly start programming in Python.

Control FlowDictionariesLists
0 likes · 10 min read
Master Python Basics: Variables, Control Flow, Loops, Lists & Dictionaries
Qunar Tech Salon
Qunar Tech Salon
Dec 29, 2017 · Fundamentals

12 Essential Python Programming Basics: Regular Expressions, Directory Traversal, List Sorting, Deduplication, Dictionary Sorting, Data Conversion, Time Operations, Command‑Line Parsing, Print Formatting, Base Conversion, System Commands, Signal Handling, and File I/O

This article presents a concise collection of twelve fundamental Python techniques—including regex substitution, directory walking, list sorting and deduplication, dictionary sorting, conversions between dict/list/string, time manipulation, getopt argument parsing, formatted printing, numeral base conversion, executing system commands, handling Ctrl+C/Ctrl+D signals, and file reading/writing—each illustrated with ready‑to‑run code snippets.

Argument ParsingData StructuresFile I/O
0 likes · 14 min read
12 Essential Python Programming Basics: Regular Expressions, Directory Traversal, List Sorting, Deduplication, Dictionary Sorting, Data Conversion, Time Operations, Command‑Line Parsing, Print Formatting, Base Conversion, System Commands, Signal Handling, and File I/O
MaGe Linux Operations
MaGe Linux Operations
Nov 26, 2017 · Fundamentals

Essential Python Basics: 25 Key Concepts Every Developer Should Know

This article provides a comprehensive overview of Python fundamentals, covering its interpreted nature, interactivity, object‑oriented features, benefits, coding standards like PEP8, serialization with pickle, memory management, debugging tools, decorators, data structures, namespaces, lambda functions, testing, and more.

Data StructuresMemory ManagementPickle
0 likes · 9 min read
Essential Python Basics: 25 Key Concepts Every Developer Should Know