Edge Python has no user-defined classes, but strings, lists, and dicts come with a curated set of built-in methods. They behave like CPython equivalents.Documentation Index
Fetch the complete documentation index at: https://edgepython.com/llms.txt
Use this file to discover all available pages before exploring further.
Output
String methods
Case transforms
Output
Whitespace
Output
Predicates
Output
Search and count
Output
Split, join, replace
Output
Padding
Output
List methods
Pure (return a new value or query)
Output
Mutating
These returnNone and modify the list in place.
Output
Output
Output
Dict methods
Views
Output
Lookup with default
Output
Mutation
Output
Output
Method summary
String — str
| Method | Arity | Returns |
|---|---|---|
upper | 0 | uppercased copy |
lower | 0 | lowercased copy |
capitalize | 0 | first letter upper, rest lower |
title | 0 | each word capitalized |
strip | 0 | no leading/trailing whitespace |
lstrip | 0 or 1 | left-strip; optional set of chars |
rstrip | 0 or 1 | right-strip; optional set of chars |
isdigit | 0 | bool: all ASCII digits |
isalpha | 0 | bool: all alphabetic |
isalnum | 0 | bool: all alphanumeric |
startswith | 1 | bool |
endswith | 1 | bool |
find | 1 | index or -1 |
count | 1 | non-overlapping occurrences |
split | 0 or 1 | list of pieces |
join | 1 | joined string |
replace | 2 | new string with all replacements |
center | 1 or 2 | padded copy |
zfill | 1 | zero-padded copy, sign-aware |
List — list
| Method | Arity | Mutates? | Returns |
|---|---|---|---|
index | 1 | no | first matching index |
count | 1 | no | matching count |
copy | 0 | no | shallow copy |
append | 1 | yes | None |
extend | 1 | yes | None |
insert | 2 | yes | None |
remove | 1 | yes | None |
pop | 0 or 1 | yes | popped value |
sort | 0 | yes | None |
reverse | 0 | yes | None |
clear | 0 | yes | None |
Dict — dict
| Method | Arity | Mutates? | Returns |
|---|---|---|---|
keys | 0 | no | list of keys |
values | 0 | no | list of values |
items | 0 | no | list of (k, v) tuples |
get | 1 or 2 | no | value or default |
update | 1 | yes | None |
pop | 1 or 2 | yes | popped value or default |
setdefault | 1 or 2 | yes | existing or default value |