Lisa Notes
Author

Lisa Notes

Lisa's notes: musings on daily life, work, study, personal growth, and casual reflections.

81
Articles
0
Likes
53
Views
0
Comments
Recent Articles

Latest from Lisa Notes

81 recent articles
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.

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

Python String Manipulation: strip, split, and join with Examples

This tutorial demonstrates how to use Python's strip, lstrip, rstrip, split, and join functions to remove characters, divide strings, and concatenate elements, providing code snippets and the corresponding output for each operation.

JoinPythonString Manipulation
0 likes · 3 min read
Python String Manipulation: strip, split, and join with Examples
Lisa Notes
Lisa Notes
Mar 23, 2026 · Fundamentals

Python String Basics: Finding Substrings and Getting Length

This tutorial demonstrates how to use Python's built-in string functions to obtain a string's length, count occurrences of a substring, convert case, and locate substrings using find, index, and rfind, with concrete code examples and expected outputs.

PythonStringcase-conversion
0 likes · 4 min read
Python String Basics: Finding Substrings and Getting Length
Lisa Notes
Lisa Notes
Mar 23, 2026 · Fundamentals

Master Java Loop Statements: From Basics to Practical Examples

This article explains Java's loop constructs—including while, do‑while, for, nested loops, foreach, and bubble‑sort implementations—through detailed syntax descriptions, step‑by‑step execution processes, and multiple concrete code examples with expected outputs.

JavaLoop Statementsbubble sort
0 likes · 16 min read
Master Java Loop Statements: From Basics to Practical Examples
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 FlowJavaProgramming Basics
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 StringProgramming Basics
0 likes · 4 min read
Python String Basics: Common Techniques and Examples