// resources

Resources

// Code Example
hello.py
Your first Python script. One instruction. One result. That's how it starts.
44 downloads 25 Apr 2026 → Set Up Python (Don’t Overthink It)
[ download ]
// Code Example
variables.py
See how labels work in practice. Change a value — watch everything update.
[ download ]
// Code Example
strings_basics.py
Text is data. See how strings work in practice — quotes, concatenation, and why "25" is not the same as 25.
51 downloads 25 Apr 2026 → Text is Data Too
[ download ]
// Code Example
strings_indexing.py
Every character has a position. See how indexes work — from zero to negative.
51 downloads 25 Apr 2026 → Every Character Has a Number
[ download ]
// Code Example
strings_slicing.py
Take exactly the piece you need. All slicing variations in one file.
55 downloads 25 Apr 2026 → Take a Piece of the String
[ download ]
// Code Example
strings_methods_1.py
Your string's basic toolkit in action. len, upper, lower, strip, replace — with examples and chaining.
51 downloads 25 Apr 2026 → Methods — Your String’s Toolkit
[ download ]
// Code Example
strings_methods_2.py
Search, split, and rebuild. See how in, find, count, startswith, split, and join work in practice.
50 downloads 25 Apr 2026 → Working With What’s Inside Strings
[ download ]
// Code Example
data_types.py
Not all values are the same. See the four basic types in action — str, int, float, bool — and why type() is your best f…
47 downloads 25 Apr 2026 → Not All Values Are the Same
[ download ]
// Code Example
print_formatting.py
Your output, your rules. sep, end, and f-strings — everything you need to print clean, structured results.
49 downloads 26 Apr 2026 → Your Output, Your Rules
[ download ]
// Code Example
input_basics.py
Your program is listening. See how input() works — from basic text to numbers and a real age calculator.
48 downloads 26 Apr 2026 → Your Program Is Listening
[ download ]
// Code Example
numbers_basics.py
int or float — Python decides. See how numbers work, how types are assigned, and why "25" is not 25.
41 downloads 28 Apr 2026 → Python Loves Numbers
[ download ]
// Code Example
arithmetic.py
All basic arithmetic operators in one file. With variables, order of operations, and why division always returns a floa…
39 downloads 28 Apr 2026 → Python Does the Math
[ download ]
// Code Example
int_vs_float.py
Same value, different type. See how int and float behave differently — division, conversion, mixing, and the float prec…
40 downloads 28 Apr 2026 → int vs float — Know the Difference
[ download ]
// Code Example
math_module.py
sqrt, floor, ceil, pi, pow, round — the math module and built-ins in one file. Your first import, explained.
40 downloads 28 Apr 2026 → Python Getting Math Dirty
[ download ]
// Code Example
bool_basics.py
True or False — that's it. See how bool works, how comparison operators return bools, and why == and = are not the same.
40 downloads 29 Apr 2026 → Everything is True or False
[ download ]
« first« ← prev 1 / 6 next → last »»