Lisa Notes
Author

Lisa Notes

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

81
Articles
0
Likes
52
Views
0
Comments
Recent Articles

Latest from Lisa Notes

81 recent articles
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 ExampleProgramming BasicsPython
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 operatorsProgramming BasicsPython
0 likes · 3 min read
How Python’s + Operator Concatenates Strings (and Why Numbers Fail)
Lisa Notes
Lisa Notes
Feb 23, 2026 · Fundamentals

How to Convert Any Python Data Type to Boolean

This tutorial explains Python’s bool() function, lists the values that evaluate to False, demonstrates converting numbers, strings, collections, and None to booleans, and shows how implicit conversion works in conditional statements, with concrete code examples for each case.

ListPythonType Conversion
0 likes · 4 min read
How to Convert Any Python Data Type to Boolean
Lisa Notes
Lisa Notes
Feb 21, 2026 · Fundamentals

How to Convert Various Python Data Types to Integers

This tutorial explains why type conversion is needed in Python, describes the int(), str(), float() and bool() functions with their parameters, and provides a concrete example showing how to turn user input from a string into an integer for arithmetic.

PythonTutorialType Conversion
0 likes · 4 min read
How to Convert Various Python Data Types to Integers
Lisa Notes
Lisa Notes
Feb 20, 2026 · Fundamentals

Master Python's input() Function: A Beginner’s Guide

This tutorial explains how Python's input() function works, covering its syntax, behavior, and return type, and provides concrete examples such as prompting for a password and age, illustrating how user input is captured and displayed in Python 3.

BeginnerPythonTutorial
0 likes · 4 min read
Master Python's input() Function: A Beginner’s Guide
Lisa Notes
Lisa Notes
Feb 17, 2026 · Fundamentals

Python Print Function: A Beginner’s Guide to Output

This article introduces Python's print() function, explaining its purpose of displaying program results and detailing each parameter—self, *args, sep, end, and file—so beginners can understand how to control output formatting and destinations.

PythonTutorialbasics
0 likes · 3 min read
Python Print Function: A Beginner’s Guide to Output
Lisa Notes
Lisa Notes
Feb 16, 2026 · Operations

How a Smart‑Hardware Team Cut Costs by 95% and Boosted GMV to $1.68B in One Year

By mapping information gaps, building a cross‑functional support system, and automating key workflows, a smart‑hardware operation reduced remote communication costs to zero, cut labor by 50%, lowered expenses by 95%, lifted efficiency by 50%, and generated roughly $1.68 billion GMV within a year.

Cost Reductionautomationcross‑functional collaboration
0 likes · 4 min read
How a Smart‑Hardware Team Cut Costs by 95% and Boosted GMV to $1.68B in One Year
Lisa Notes
Lisa Notes
Feb 15, 2026 · Fundamentals

Python Identifier Naming Rules and Conventions for Beginners

This guide explains the purpose of Python identifiers, outlines the character and naming rules—including case sensitivity and keyword restrictions—provides common naming patterns such as boolean prefixes and collection naming, and offers best‑practice recommendations for clear, maintainable code.

Best PracticesPythoncoding style
0 likes · 4 min read
Python Identifier Naming Rules and Conventions for Beginners
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.

Programming BasicsPythoncode readability
0 likes · 3 min read
Why Comments Matter in Python: A Beginner’s Guide