├── .eslintrc-auto-import.json ├── .github ├── chatmodes │ └── beastmode.chatmode.md ├── copilot-instructions.md └── prompts │ └── relevan-links.prompt.md ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── GEMINI.md ├── LICENCE ├── README.md ├── contributors └── contributors.json ├── docs ├── I18N.md ├── blog │ ├── de │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── en │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── es │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── fr │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── ja │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── ko │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── pt │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ ├── ru │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md │ └── zh │ │ ├── python-3-14-breaking-free-from-gil.md │ │ ├── python-comprehensions-step-by-step.md │ │ ├── python-data-types.md │ │ ├── python-decorators-for-beginners.md │ │ ├── python-easy-args-kwargs.md │ │ ├── python-pathlib-essentials.md │ │ ├── python-projects-with-poetry-and-vscode-part-1.md │ │ ├── python-projects-with-poetry-and-vscode-part-2.md │ │ ├── python-projects-with-poetry-and-vscode-part-3.md │ │ ├── python-sets-what-why-how.md │ │ └── python-uv-package-manager.md ├── builtin │ ├── de │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── en │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── es │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── fr │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── ja │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── ko │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── pt │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ ├── ru │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md │ └── zh │ │ ├── abs.md │ │ ├── aiter.md │ │ ├── all.md │ │ ├── any.md │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bool.md │ │ ├── breakpoint.md │ │ ├── bytearray.md │ │ ├── bytes.md │ │ ├── callable.md │ │ ├── chr.md │ │ ├── classmethod.md │ │ ├── compile.md │ │ ├── complex.md │ │ ├── delattr.md │ │ ├── dict.md │ │ ├── dir.md │ │ ├── divmod.md │ │ ├── enumerate.md │ │ ├── eval.md │ │ ├── exec.md │ │ ├── filter.md │ │ ├── float.md │ │ ├── format.md │ │ ├── frozenset.md │ │ ├── getattr.md │ │ ├── globals.md │ │ ├── hasattr.md │ │ ├── hash.md │ │ ├── help.md │ │ ├── hex.md │ │ ├── id.md │ │ ├── import.md │ │ ├── input.md │ │ ├── int.md │ │ ├── isinstance.md │ │ ├── issubclass.md │ │ ├── iter.md │ │ ├── len.md │ │ ├── list.md │ │ ├── locals.md │ │ ├── map.md │ │ ├── max.md │ │ ├── memoryview.md │ │ ├── min.md │ │ ├── next.md │ │ ├── object.md │ │ ├── oct.md │ │ ├── open.md │ │ ├── ord.md │ │ ├── pow.md │ │ ├── print.md │ │ ├── property.md │ │ ├── range.md │ │ ├── repr.md │ │ ├── reversed.md │ │ ├── round.md │ │ ├── set.md │ │ ├── setattr.md │ │ ├── slice.md │ │ ├── sorted.md │ │ ├── staticmethod.md │ │ ├── str.md │ │ ├── sum.md │ │ ├── super.md │ │ ├── tuple.md │ │ ├── type.md │ │ ├── vars.md │ │ └── zip.md ├── cheatsheet │ ├── de │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── en │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── es │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── fr │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── ja │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── ko │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── pt │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ ├── ru │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md │ └── zh │ │ ├── args-and-kwargs.md │ │ ├── basics.md │ │ ├── built-in-functions.md │ │ ├── comprehensions.md │ │ ├── context-manager.md │ │ ├── control-flow.md │ │ ├── dataclasses.md │ │ ├── debugging.md │ │ ├── decorators.md │ │ ├── dictionaries.md │ │ ├── exception-handling.md │ │ ├── file-directory-path.md │ │ ├── functions.md │ │ ├── json-yaml.md │ │ ├── lists-and-tuples.md │ │ ├── main.md │ │ ├── manipulating-strings.md │ │ ├── oop-basics.md │ │ ├── packaging.md │ │ ├── reading-and-writing-files.md │ │ ├── regular-expressions.md │ │ ├── sets.md │ │ ├── string-formatting.md │ │ └── virtual-environments.md └── modules │ ├── de │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── en │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── es │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── fr │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── ja │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── ko │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── pt │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ ├── ru │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md │ └── zh │ ├── copy-module.md │ ├── csv-module.md │ ├── datetime-module.md │ ├── itertools-module.md │ ├── json-module.md │ ├── os-module.md │ ├── pathlib-module.md │ ├── random-module.md │ ├── shelve-module.md │ ├── subprocess-module.md │ └── zipfile-module.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── blog │ ├── kwargs.jpg │ ├── path-lib-essentials.jpg │ ├── poetry-1.jpg │ ├── poetry-2.jpg │ ├── poetry-3.jpg │ ├── python-comprehensions.png │ ├── python-data-types.jpg │ ├── python-decorators.jpg │ ├── python-gil.jpg │ ├── python-uv-package-manager.jpg │ └── sets.jpg ├── browserconfig.xml ├── favicon.ico ├── favicon.svg ├── fonts │ ├── Inter-italic.var.woff2 │ ├── Inter-roman.var.woff2 │ ├── lexend.txt │ └── lexend.woff2 ├── labex-logo-dark.svg ├── labex-logo-light.svg ├── labex-python-cheatsheet.pdf ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg ├── screenshots │ ├── dark.png │ └── light.png └── sw.js ├── renovate.json ├── scripts ├── download-blog-images.py ├── generate-i18n-sitemap.ts └── update-quiz-format.py ├── src ├── App.vue ├── assets │ └── logo.png ├── auto-imports.d.ts ├── components.d.ts ├── components │ ├── AlgoliaDocSearch.vue │ ├── BlogTitleHeader.vue │ ├── EmptySection.vue │ ├── HomePage.vue │ ├── Prose.vue │ ├── blog │ │ ├── BlogIndex.vue │ │ └── BlogPagination.vue │ ├── icons │ │ ├── ArrowIcon.vue │ │ ├── BlogIcon.vue │ │ ├── BookIcon.vue │ │ ├── BugIcon.vue │ │ ├── EditIcon.vue │ │ ├── ExternalLinkIcon.vue │ │ ├── GithubIcon.vue │ │ ├── GridIcon.vue │ │ ├── LightBulbIcon.vue │ │ ├── PluginIcon.vue │ │ ├── QuestionIcon.vue │ │ ├── ReferenceIcon.vue │ │ └── WarningIcon.vue │ ├── layout │ │ ├── TheFooter.vue │ │ ├── TheNavbar.vue │ │ ├── TheNavbarReader.vue │ │ ├── TheSidebarDesktop.vue │ │ ├── TheSidebarMobile.vue │ │ ├── TheSidebarNavigation.vue │ │ └── TheToc.vue │ └── ui │ │ ├── BaseBadge.vue │ │ ├── BaseBadgeNotice.vue │ │ ├── BaseBadgeSecondary.vue │ │ ├── BaseBanner.vue │ │ ├── BaseCustomizableLinkCard.vue │ │ ├── BaseLabUrl.vue │ │ ├── BaseLinkCard.vue │ │ ├── BaseLocaleSwitcher.vue │ │ ├── BasePagination.vue │ │ ├── BaseReaderMode.vue │ │ ├── BaseThemeToggle.vue │ │ ├── BaseTitle.vue │ │ ├── Tag.vue │ │ ├── disclaimer │ │ ├── BaseDisclaimer.vue │ │ ├── BaseDisclaimerContent.vue │ │ └── BaseDisclaimerTitle.vue │ │ ├── newBadge.vue │ │ ├── quiz │ │ ├── BaseQuiz.vue │ │ ├── BaseQuizAnswer.vue │ │ └── BaseQuizOption.vue │ │ ├── table │ │ ├── BaseTable.vue │ │ ├── BaseTableItem.vue │ │ └── BaseTableRow.vue │ │ └── warning │ │ ├── BaseWarning.vue │ │ ├── BaseWarningContent.vue │ │ └── BaseWarningTitle.vue ├── composables │ ├── dark.ts │ ├── meta.ts │ ├── scroll.ts │ ├── structuredData.ts │ ├── toc.ts │ ├── useAuth.ts │ ├── useI18n.ts │ └── useQuizTracking.ts ├── env.d.ts ├── layouts │ ├── article.vue │ ├── blog.vue │ ├── default.vue │ ├── empty.vue │ ├── fullPage.vue │ └── fullWidth.vue ├── locales │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ └── zh.json ├── main.ts ├── modules │ ├── analytics.ts │ ├── code-block-labels.ts │ └── pinia.ts ├── pages │ ├── [...all].vue │ ├── blog │ │ └── index.vue │ ├── changelog.md │ ├── contributing.md │ ├── de │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ ├── es │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ ├── fr │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ ├── index.vue │ ├── ja │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ ├── ko │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ ├── pt │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ ├── robots.txt.vue │ ├── ru │ │ ├── blog │ │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue │ └── zh │ │ ├── blog │ │ └── index.vue │ │ ├── changelog.vue │ │ ├── contributing.vue │ │ └── index.vue ├── store │ ├── navigation.ts │ └── reader.ts ├── styles │ ├── docsearch.css │ ├── fonts.css │ ├── index.css │ └── markdown.css ├── types.ts └── types │ ├── index.d.ts │ └── ui.ts ├── tailwind.config.js ├── tests └── basic.test.ts ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.worker.json ├── vite.config.ts ├── worker.ts └── wrangler.toml /.eslintrc-auto-import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/.eslintrc-auto-import.json -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /contributors/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/contributors/contributors.json -------------------------------------------------------------------------------- /docs/I18N.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/I18N.md -------------------------------------------------------------------------------- /docs/builtin/de/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/abs.md -------------------------------------------------------------------------------- /docs/builtin/de/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/aiter.md -------------------------------------------------------------------------------- /docs/builtin/de/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/all.md -------------------------------------------------------------------------------- /docs/builtin/de/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/any.md -------------------------------------------------------------------------------- /docs/builtin/de/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/ascii.md -------------------------------------------------------------------------------- /docs/builtin/de/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/bin.md -------------------------------------------------------------------------------- /docs/builtin/de/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/bool.md -------------------------------------------------------------------------------- /docs/builtin/de/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/de/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/de/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/bytes.md -------------------------------------------------------------------------------- /docs/builtin/de/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/callable.md -------------------------------------------------------------------------------- /docs/builtin/de/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/chr.md -------------------------------------------------------------------------------- /docs/builtin/de/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/de/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/compile.md -------------------------------------------------------------------------------- /docs/builtin/de/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/complex.md -------------------------------------------------------------------------------- /docs/builtin/de/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/delattr.md -------------------------------------------------------------------------------- /docs/builtin/de/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/dict.md -------------------------------------------------------------------------------- /docs/builtin/de/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/dir.md -------------------------------------------------------------------------------- /docs/builtin/de/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/divmod.md -------------------------------------------------------------------------------- /docs/builtin/de/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/de/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/eval.md -------------------------------------------------------------------------------- /docs/builtin/de/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/exec.md -------------------------------------------------------------------------------- /docs/builtin/de/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/filter.md -------------------------------------------------------------------------------- /docs/builtin/de/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/float.md -------------------------------------------------------------------------------- /docs/builtin/de/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/format.md -------------------------------------------------------------------------------- /docs/builtin/de/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/de/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/getattr.md -------------------------------------------------------------------------------- /docs/builtin/de/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/globals.md -------------------------------------------------------------------------------- /docs/builtin/de/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/de/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/hash.md -------------------------------------------------------------------------------- /docs/builtin/de/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/help.md -------------------------------------------------------------------------------- /docs/builtin/de/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/hex.md -------------------------------------------------------------------------------- /docs/builtin/de/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/id.md -------------------------------------------------------------------------------- /docs/builtin/de/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/import.md -------------------------------------------------------------------------------- /docs/builtin/de/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/input.md -------------------------------------------------------------------------------- /docs/builtin/de/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/int.md -------------------------------------------------------------------------------- /docs/builtin/de/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/de/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/de/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/iter.md -------------------------------------------------------------------------------- /docs/builtin/de/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/len.md -------------------------------------------------------------------------------- /docs/builtin/de/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/list.md -------------------------------------------------------------------------------- /docs/builtin/de/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/locals.md -------------------------------------------------------------------------------- /docs/builtin/de/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/map.md -------------------------------------------------------------------------------- /docs/builtin/de/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/max.md -------------------------------------------------------------------------------- /docs/builtin/de/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/de/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/min.md -------------------------------------------------------------------------------- /docs/builtin/de/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/next.md -------------------------------------------------------------------------------- /docs/builtin/de/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/object.md -------------------------------------------------------------------------------- /docs/builtin/de/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/oct.md -------------------------------------------------------------------------------- /docs/builtin/de/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/open.md -------------------------------------------------------------------------------- /docs/builtin/de/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/ord.md -------------------------------------------------------------------------------- /docs/builtin/de/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/pow.md -------------------------------------------------------------------------------- /docs/builtin/de/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/print.md -------------------------------------------------------------------------------- /docs/builtin/de/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/property.md -------------------------------------------------------------------------------- /docs/builtin/de/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/range.md -------------------------------------------------------------------------------- /docs/builtin/de/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/repr.md -------------------------------------------------------------------------------- /docs/builtin/de/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/reversed.md -------------------------------------------------------------------------------- /docs/builtin/de/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/round.md -------------------------------------------------------------------------------- /docs/builtin/de/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/set.md -------------------------------------------------------------------------------- /docs/builtin/de/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/setattr.md -------------------------------------------------------------------------------- /docs/builtin/de/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/slice.md -------------------------------------------------------------------------------- /docs/builtin/de/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/sorted.md -------------------------------------------------------------------------------- /docs/builtin/de/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/de/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/str.md -------------------------------------------------------------------------------- /docs/builtin/de/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/sum.md -------------------------------------------------------------------------------- /docs/builtin/de/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/super.md -------------------------------------------------------------------------------- /docs/builtin/de/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/tuple.md -------------------------------------------------------------------------------- /docs/builtin/de/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/type.md -------------------------------------------------------------------------------- /docs/builtin/de/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/vars.md -------------------------------------------------------------------------------- /docs/builtin/de/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/de/zip.md -------------------------------------------------------------------------------- /docs/builtin/en/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/abs.md -------------------------------------------------------------------------------- /docs/builtin/en/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/aiter.md -------------------------------------------------------------------------------- /docs/builtin/en/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/all.md -------------------------------------------------------------------------------- /docs/builtin/en/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/any.md -------------------------------------------------------------------------------- /docs/builtin/en/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/ascii.md -------------------------------------------------------------------------------- /docs/builtin/en/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/bin.md -------------------------------------------------------------------------------- /docs/builtin/en/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/bool.md -------------------------------------------------------------------------------- /docs/builtin/en/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/en/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/en/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/bytes.md -------------------------------------------------------------------------------- /docs/builtin/en/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/callable.md -------------------------------------------------------------------------------- /docs/builtin/en/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/chr.md -------------------------------------------------------------------------------- /docs/builtin/en/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/en/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/compile.md -------------------------------------------------------------------------------- /docs/builtin/en/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/complex.md -------------------------------------------------------------------------------- /docs/builtin/en/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/delattr.md -------------------------------------------------------------------------------- /docs/builtin/en/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/dict.md -------------------------------------------------------------------------------- /docs/builtin/en/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/dir.md -------------------------------------------------------------------------------- /docs/builtin/en/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/divmod.md -------------------------------------------------------------------------------- /docs/builtin/en/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/en/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/eval.md -------------------------------------------------------------------------------- /docs/builtin/en/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/exec.md -------------------------------------------------------------------------------- /docs/builtin/en/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/filter.md -------------------------------------------------------------------------------- /docs/builtin/en/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/float.md -------------------------------------------------------------------------------- /docs/builtin/en/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/format.md -------------------------------------------------------------------------------- /docs/builtin/en/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/en/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/getattr.md -------------------------------------------------------------------------------- /docs/builtin/en/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/globals.md -------------------------------------------------------------------------------- /docs/builtin/en/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/en/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/hash.md -------------------------------------------------------------------------------- /docs/builtin/en/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/help.md -------------------------------------------------------------------------------- /docs/builtin/en/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/hex.md -------------------------------------------------------------------------------- /docs/builtin/en/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/id.md -------------------------------------------------------------------------------- /docs/builtin/en/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/import.md -------------------------------------------------------------------------------- /docs/builtin/en/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/input.md -------------------------------------------------------------------------------- /docs/builtin/en/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/int.md -------------------------------------------------------------------------------- /docs/builtin/en/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/en/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/en/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/iter.md -------------------------------------------------------------------------------- /docs/builtin/en/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/len.md -------------------------------------------------------------------------------- /docs/builtin/en/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/list.md -------------------------------------------------------------------------------- /docs/builtin/en/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/locals.md -------------------------------------------------------------------------------- /docs/builtin/en/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/map.md -------------------------------------------------------------------------------- /docs/builtin/en/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/max.md -------------------------------------------------------------------------------- /docs/builtin/en/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/en/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/min.md -------------------------------------------------------------------------------- /docs/builtin/en/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/next.md -------------------------------------------------------------------------------- /docs/builtin/en/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/object.md -------------------------------------------------------------------------------- /docs/builtin/en/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/oct.md -------------------------------------------------------------------------------- /docs/builtin/en/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/open.md -------------------------------------------------------------------------------- /docs/builtin/en/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/ord.md -------------------------------------------------------------------------------- /docs/builtin/en/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/pow.md -------------------------------------------------------------------------------- /docs/builtin/en/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/print.md -------------------------------------------------------------------------------- /docs/builtin/en/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/property.md -------------------------------------------------------------------------------- /docs/builtin/en/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/range.md -------------------------------------------------------------------------------- /docs/builtin/en/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/repr.md -------------------------------------------------------------------------------- /docs/builtin/en/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/reversed.md -------------------------------------------------------------------------------- /docs/builtin/en/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/round.md -------------------------------------------------------------------------------- /docs/builtin/en/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/set.md -------------------------------------------------------------------------------- /docs/builtin/en/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/setattr.md -------------------------------------------------------------------------------- /docs/builtin/en/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/slice.md -------------------------------------------------------------------------------- /docs/builtin/en/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/sorted.md -------------------------------------------------------------------------------- /docs/builtin/en/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/en/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/str.md -------------------------------------------------------------------------------- /docs/builtin/en/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/sum.md -------------------------------------------------------------------------------- /docs/builtin/en/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/super.md -------------------------------------------------------------------------------- /docs/builtin/en/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/tuple.md -------------------------------------------------------------------------------- /docs/builtin/en/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/type.md -------------------------------------------------------------------------------- /docs/builtin/en/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/vars.md -------------------------------------------------------------------------------- /docs/builtin/en/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/en/zip.md -------------------------------------------------------------------------------- /docs/builtin/es/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/abs.md -------------------------------------------------------------------------------- /docs/builtin/es/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/aiter.md -------------------------------------------------------------------------------- /docs/builtin/es/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/all.md -------------------------------------------------------------------------------- /docs/builtin/es/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/any.md -------------------------------------------------------------------------------- /docs/builtin/es/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/ascii.md -------------------------------------------------------------------------------- /docs/builtin/es/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/bin.md -------------------------------------------------------------------------------- /docs/builtin/es/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/bool.md -------------------------------------------------------------------------------- /docs/builtin/es/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/es/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/es/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/bytes.md -------------------------------------------------------------------------------- /docs/builtin/es/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/callable.md -------------------------------------------------------------------------------- /docs/builtin/es/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/chr.md -------------------------------------------------------------------------------- /docs/builtin/es/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/es/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/compile.md -------------------------------------------------------------------------------- /docs/builtin/es/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/complex.md -------------------------------------------------------------------------------- /docs/builtin/es/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/delattr.md -------------------------------------------------------------------------------- /docs/builtin/es/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/dict.md -------------------------------------------------------------------------------- /docs/builtin/es/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/dir.md -------------------------------------------------------------------------------- /docs/builtin/es/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/divmod.md -------------------------------------------------------------------------------- /docs/builtin/es/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/es/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/eval.md -------------------------------------------------------------------------------- /docs/builtin/es/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/exec.md -------------------------------------------------------------------------------- /docs/builtin/es/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/filter.md -------------------------------------------------------------------------------- /docs/builtin/es/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/float.md -------------------------------------------------------------------------------- /docs/builtin/es/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/format.md -------------------------------------------------------------------------------- /docs/builtin/es/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/es/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/getattr.md -------------------------------------------------------------------------------- /docs/builtin/es/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/globals.md -------------------------------------------------------------------------------- /docs/builtin/es/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/es/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/hash.md -------------------------------------------------------------------------------- /docs/builtin/es/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/help.md -------------------------------------------------------------------------------- /docs/builtin/es/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/hex.md -------------------------------------------------------------------------------- /docs/builtin/es/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/id.md -------------------------------------------------------------------------------- /docs/builtin/es/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/import.md -------------------------------------------------------------------------------- /docs/builtin/es/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/input.md -------------------------------------------------------------------------------- /docs/builtin/es/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/int.md -------------------------------------------------------------------------------- /docs/builtin/es/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/es/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/es/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/iter.md -------------------------------------------------------------------------------- /docs/builtin/es/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/len.md -------------------------------------------------------------------------------- /docs/builtin/es/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/list.md -------------------------------------------------------------------------------- /docs/builtin/es/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/locals.md -------------------------------------------------------------------------------- /docs/builtin/es/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/map.md -------------------------------------------------------------------------------- /docs/builtin/es/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/max.md -------------------------------------------------------------------------------- /docs/builtin/es/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/es/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/min.md -------------------------------------------------------------------------------- /docs/builtin/es/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/next.md -------------------------------------------------------------------------------- /docs/builtin/es/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/object.md -------------------------------------------------------------------------------- /docs/builtin/es/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/oct.md -------------------------------------------------------------------------------- /docs/builtin/es/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/open.md -------------------------------------------------------------------------------- /docs/builtin/es/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/ord.md -------------------------------------------------------------------------------- /docs/builtin/es/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/pow.md -------------------------------------------------------------------------------- /docs/builtin/es/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/print.md -------------------------------------------------------------------------------- /docs/builtin/es/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/property.md -------------------------------------------------------------------------------- /docs/builtin/es/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/range.md -------------------------------------------------------------------------------- /docs/builtin/es/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/repr.md -------------------------------------------------------------------------------- /docs/builtin/es/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/reversed.md -------------------------------------------------------------------------------- /docs/builtin/es/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/round.md -------------------------------------------------------------------------------- /docs/builtin/es/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/set.md -------------------------------------------------------------------------------- /docs/builtin/es/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/setattr.md -------------------------------------------------------------------------------- /docs/builtin/es/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/slice.md -------------------------------------------------------------------------------- /docs/builtin/es/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/sorted.md -------------------------------------------------------------------------------- /docs/builtin/es/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/es/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/str.md -------------------------------------------------------------------------------- /docs/builtin/es/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/sum.md -------------------------------------------------------------------------------- /docs/builtin/es/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/super.md -------------------------------------------------------------------------------- /docs/builtin/es/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/tuple.md -------------------------------------------------------------------------------- /docs/builtin/es/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/type.md -------------------------------------------------------------------------------- /docs/builtin/es/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/vars.md -------------------------------------------------------------------------------- /docs/builtin/es/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/es/zip.md -------------------------------------------------------------------------------- /docs/builtin/fr/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/abs.md -------------------------------------------------------------------------------- /docs/builtin/fr/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/aiter.md -------------------------------------------------------------------------------- /docs/builtin/fr/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/all.md -------------------------------------------------------------------------------- /docs/builtin/fr/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/any.md -------------------------------------------------------------------------------- /docs/builtin/fr/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/ascii.md -------------------------------------------------------------------------------- /docs/builtin/fr/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/bin.md -------------------------------------------------------------------------------- /docs/builtin/fr/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/bool.md -------------------------------------------------------------------------------- /docs/builtin/fr/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/fr/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/fr/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/bytes.md -------------------------------------------------------------------------------- /docs/builtin/fr/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/callable.md -------------------------------------------------------------------------------- /docs/builtin/fr/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/chr.md -------------------------------------------------------------------------------- /docs/builtin/fr/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/fr/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/compile.md -------------------------------------------------------------------------------- /docs/builtin/fr/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/complex.md -------------------------------------------------------------------------------- /docs/builtin/fr/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/delattr.md -------------------------------------------------------------------------------- /docs/builtin/fr/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/dict.md -------------------------------------------------------------------------------- /docs/builtin/fr/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/dir.md -------------------------------------------------------------------------------- /docs/builtin/fr/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/divmod.md -------------------------------------------------------------------------------- /docs/builtin/fr/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/fr/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/eval.md -------------------------------------------------------------------------------- /docs/builtin/fr/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/exec.md -------------------------------------------------------------------------------- /docs/builtin/fr/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/filter.md -------------------------------------------------------------------------------- /docs/builtin/fr/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/float.md -------------------------------------------------------------------------------- /docs/builtin/fr/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/format.md -------------------------------------------------------------------------------- /docs/builtin/fr/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/fr/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/getattr.md -------------------------------------------------------------------------------- /docs/builtin/fr/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/globals.md -------------------------------------------------------------------------------- /docs/builtin/fr/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/fr/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/hash.md -------------------------------------------------------------------------------- /docs/builtin/fr/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/help.md -------------------------------------------------------------------------------- /docs/builtin/fr/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/hex.md -------------------------------------------------------------------------------- /docs/builtin/fr/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/id.md -------------------------------------------------------------------------------- /docs/builtin/fr/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/import.md -------------------------------------------------------------------------------- /docs/builtin/fr/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/input.md -------------------------------------------------------------------------------- /docs/builtin/fr/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/int.md -------------------------------------------------------------------------------- /docs/builtin/fr/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/fr/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/fr/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/iter.md -------------------------------------------------------------------------------- /docs/builtin/fr/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/len.md -------------------------------------------------------------------------------- /docs/builtin/fr/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/list.md -------------------------------------------------------------------------------- /docs/builtin/fr/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/locals.md -------------------------------------------------------------------------------- /docs/builtin/fr/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/map.md -------------------------------------------------------------------------------- /docs/builtin/fr/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/max.md -------------------------------------------------------------------------------- /docs/builtin/fr/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/fr/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/min.md -------------------------------------------------------------------------------- /docs/builtin/fr/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/next.md -------------------------------------------------------------------------------- /docs/builtin/fr/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/object.md -------------------------------------------------------------------------------- /docs/builtin/fr/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/oct.md -------------------------------------------------------------------------------- /docs/builtin/fr/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/open.md -------------------------------------------------------------------------------- /docs/builtin/fr/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/ord.md -------------------------------------------------------------------------------- /docs/builtin/fr/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/pow.md -------------------------------------------------------------------------------- /docs/builtin/fr/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/print.md -------------------------------------------------------------------------------- /docs/builtin/fr/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/property.md -------------------------------------------------------------------------------- /docs/builtin/fr/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/range.md -------------------------------------------------------------------------------- /docs/builtin/fr/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/repr.md -------------------------------------------------------------------------------- /docs/builtin/fr/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/reversed.md -------------------------------------------------------------------------------- /docs/builtin/fr/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/round.md -------------------------------------------------------------------------------- /docs/builtin/fr/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/set.md -------------------------------------------------------------------------------- /docs/builtin/fr/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/setattr.md -------------------------------------------------------------------------------- /docs/builtin/fr/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/slice.md -------------------------------------------------------------------------------- /docs/builtin/fr/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/sorted.md -------------------------------------------------------------------------------- /docs/builtin/fr/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/fr/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/str.md -------------------------------------------------------------------------------- /docs/builtin/fr/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/sum.md -------------------------------------------------------------------------------- /docs/builtin/fr/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/super.md -------------------------------------------------------------------------------- /docs/builtin/fr/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/tuple.md -------------------------------------------------------------------------------- /docs/builtin/fr/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/type.md -------------------------------------------------------------------------------- /docs/builtin/fr/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/vars.md -------------------------------------------------------------------------------- /docs/builtin/fr/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/fr/zip.md -------------------------------------------------------------------------------- /docs/builtin/ja/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/abs.md -------------------------------------------------------------------------------- /docs/builtin/ja/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/aiter.md -------------------------------------------------------------------------------- /docs/builtin/ja/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/all.md -------------------------------------------------------------------------------- /docs/builtin/ja/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/any.md -------------------------------------------------------------------------------- /docs/builtin/ja/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/ascii.md -------------------------------------------------------------------------------- /docs/builtin/ja/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/bin.md -------------------------------------------------------------------------------- /docs/builtin/ja/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/bool.md -------------------------------------------------------------------------------- /docs/builtin/ja/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/ja/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/ja/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/bytes.md -------------------------------------------------------------------------------- /docs/builtin/ja/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/callable.md -------------------------------------------------------------------------------- /docs/builtin/ja/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/chr.md -------------------------------------------------------------------------------- /docs/builtin/ja/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/ja/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/compile.md -------------------------------------------------------------------------------- /docs/builtin/ja/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/complex.md -------------------------------------------------------------------------------- /docs/builtin/ja/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/delattr.md -------------------------------------------------------------------------------- /docs/builtin/ja/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/dict.md -------------------------------------------------------------------------------- /docs/builtin/ja/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/dir.md -------------------------------------------------------------------------------- /docs/builtin/ja/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/divmod.md -------------------------------------------------------------------------------- /docs/builtin/ja/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/ja/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/eval.md -------------------------------------------------------------------------------- /docs/builtin/ja/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/exec.md -------------------------------------------------------------------------------- /docs/builtin/ja/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/filter.md -------------------------------------------------------------------------------- /docs/builtin/ja/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/float.md -------------------------------------------------------------------------------- /docs/builtin/ja/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/format.md -------------------------------------------------------------------------------- /docs/builtin/ja/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/ja/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/getattr.md -------------------------------------------------------------------------------- /docs/builtin/ja/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/globals.md -------------------------------------------------------------------------------- /docs/builtin/ja/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/ja/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/hash.md -------------------------------------------------------------------------------- /docs/builtin/ja/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/help.md -------------------------------------------------------------------------------- /docs/builtin/ja/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/hex.md -------------------------------------------------------------------------------- /docs/builtin/ja/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/id.md -------------------------------------------------------------------------------- /docs/builtin/ja/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/import.md -------------------------------------------------------------------------------- /docs/builtin/ja/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/input.md -------------------------------------------------------------------------------- /docs/builtin/ja/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/int.md -------------------------------------------------------------------------------- /docs/builtin/ja/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/ja/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/ja/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/iter.md -------------------------------------------------------------------------------- /docs/builtin/ja/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/len.md -------------------------------------------------------------------------------- /docs/builtin/ja/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/list.md -------------------------------------------------------------------------------- /docs/builtin/ja/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/locals.md -------------------------------------------------------------------------------- /docs/builtin/ja/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/map.md -------------------------------------------------------------------------------- /docs/builtin/ja/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/max.md -------------------------------------------------------------------------------- /docs/builtin/ja/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/ja/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/min.md -------------------------------------------------------------------------------- /docs/builtin/ja/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/next.md -------------------------------------------------------------------------------- /docs/builtin/ja/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/object.md -------------------------------------------------------------------------------- /docs/builtin/ja/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/oct.md -------------------------------------------------------------------------------- /docs/builtin/ja/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/open.md -------------------------------------------------------------------------------- /docs/builtin/ja/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/ord.md -------------------------------------------------------------------------------- /docs/builtin/ja/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/pow.md -------------------------------------------------------------------------------- /docs/builtin/ja/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/print.md -------------------------------------------------------------------------------- /docs/builtin/ja/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/property.md -------------------------------------------------------------------------------- /docs/builtin/ja/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/range.md -------------------------------------------------------------------------------- /docs/builtin/ja/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/repr.md -------------------------------------------------------------------------------- /docs/builtin/ja/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/reversed.md -------------------------------------------------------------------------------- /docs/builtin/ja/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/round.md -------------------------------------------------------------------------------- /docs/builtin/ja/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/set.md -------------------------------------------------------------------------------- /docs/builtin/ja/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/setattr.md -------------------------------------------------------------------------------- /docs/builtin/ja/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/slice.md -------------------------------------------------------------------------------- /docs/builtin/ja/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/sorted.md -------------------------------------------------------------------------------- /docs/builtin/ja/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/ja/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/str.md -------------------------------------------------------------------------------- /docs/builtin/ja/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/sum.md -------------------------------------------------------------------------------- /docs/builtin/ja/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/super.md -------------------------------------------------------------------------------- /docs/builtin/ja/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/tuple.md -------------------------------------------------------------------------------- /docs/builtin/ja/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/type.md -------------------------------------------------------------------------------- /docs/builtin/ja/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/vars.md -------------------------------------------------------------------------------- /docs/builtin/ja/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ja/zip.md -------------------------------------------------------------------------------- /docs/builtin/ko/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/abs.md -------------------------------------------------------------------------------- /docs/builtin/ko/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/aiter.md -------------------------------------------------------------------------------- /docs/builtin/ko/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/all.md -------------------------------------------------------------------------------- /docs/builtin/ko/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/any.md -------------------------------------------------------------------------------- /docs/builtin/ko/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/ascii.md -------------------------------------------------------------------------------- /docs/builtin/ko/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/bin.md -------------------------------------------------------------------------------- /docs/builtin/ko/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/bool.md -------------------------------------------------------------------------------- /docs/builtin/ko/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/ko/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/ko/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/bytes.md -------------------------------------------------------------------------------- /docs/builtin/ko/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/callable.md -------------------------------------------------------------------------------- /docs/builtin/ko/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/chr.md -------------------------------------------------------------------------------- /docs/builtin/ko/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/ko/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/compile.md -------------------------------------------------------------------------------- /docs/builtin/ko/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/complex.md -------------------------------------------------------------------------------- /docs/builtin/ko/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/delattr.md -------------------------------------------------------------------------------- /docs/builtin/ko/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/dict.md -------------------------------------------------------------------------------- /docs/builtin/ko/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/dir.md -------------------------------------------------------------------------------- /docs/builtin/ko/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/divmod.md -------------------------------------------------------------------------------- /docs/builtin/ko/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/ko/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/eval.md -------------------------------------------------------------------------------- /docs/builtin/ko/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/exec.md -------------------------------------------------------------------------------- /docs/builtin/ko/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/filter.md -------------------------------------------------------------------------------- /docs/builtin/ko/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/float.md -------------------------------------------------------------------------------- /docs/builtin/ko/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/format.md -------------------------------------------------------------------------------- /docs/builtin/ko/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/ko/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/getattr.md -------------------------------------------------------------------------------- /docs/builtin/ko/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/globals.md -------------------------------------------------------------------------------- /docs/builtin/ko/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/ko/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/hash.md -------------------------------------------------------------------------------- /docs/builtin/ko/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/help.md -------------------------------------------------------------------------------- /docs/builtin/ko/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/hex.md -------------------------------------------------------------------------------- /docs/builtin/ko/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/id.md -------------------------------------------------------------------------------- /docs/builtin/ko/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/import.md -------------------------------------------------------------------------------- /docs/builtin/ko/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/input.md -------------------------------------------------------------------------------- /docs/builtin/ko/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/int.md -------------------------------------------------------------------------------- /docs/builtin/ko/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/ko/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/ko/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/iter.md -------------------------------------------------------------------------------- /docs/builtin/ko/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/len.md -------------------------------------------------------------------------------- /docs/builtin/ko/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/list.md -------------------------------------------------------------------------------- /docs/builtin/ko/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/locals.md -------------------------------------------------------------------------------- /docs/builtin/ko/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/map.md -------------------------------------------------------------------------------- /docs/builtin/ko/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/max.md -------------------------------------------------------------------------------- /docs/builtin/ko/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/ko/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/min.md -------------------------------------------------------------------------------- /docs/builtin/ko/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/next.md -------------------------------------------------------------------------------- /docs/builtin/ko/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/object.md -------------------------------------------------------------------------------- /docs/builtin/ko/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/oct.md -------------------------------------------------------------------------------- /docs/builtin/ko/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/open.md -------------------------------------------------------------------------------- /docs/builtin/ko/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/ord.md -------------------------------------------------------------------------------- /docs/builtin/ko/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/pow.md -------------------------------------------------------------------------------- /docs/builtin/ko/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/print.md -------------------------------------------------------------------------------- /docs/builtin/ko/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/property.md -------------------------------------------------------------------------------- /docs/builtin/ko/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/range.md -------------------------------------------------------------------------------- /docs/builtin/ko/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/repr.md -------------------------------------------------------------------------------- /docs/builtin/ko/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/reversed.md -------------------------------------------------------------------------------- /docs/builtin/ko/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/round.md -------------------------------------------------------------------------------- /docs/builtin/ko/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/set.md -------------------------------------------------------------------------------- /docs/builtin/ko/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/setattr.md -------------------------------------------------------------------------------- /docs/builtin/ko/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/slice.md -------------------------------------------------------------------------------- /docs/builtin/ko/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/sorted.md -------------------------------------------------------------------------------- /docs/builtin/ko/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/ko/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/str.md -------------------------------------------------------------------------------- /docs/builtin/ko/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/sum.md -------------------------------------------------------------------------------- /docs/builtin/ko/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/super.md -------------------------------------------------------------------------------- /docs/builtin/ko/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/tuple.md -------------------------------------------------------------------------------- /docs/builtin/ko/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/type.md -------------------------------------------------------------------------------- /docs/builtin/ko/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/vars.md -------------------------------------------------------------------------------- /docs/builtin/ko/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ko/zip.md -------------------------------------------------------------------------------- /docs/builtin/pt/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/abs.md -------------------------------------------------------------------------------- /docs/builtin/pt/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/aiter.md -------------------------------------------------------------------------------- /docs/builtin/pt/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/all.md -------------------------------------------------------------------------------- /docs/builtin/pt/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/any.md -------------------------------------------------------------------------------- /docs/builtin/pt/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/ascii.md -------------------------------------------------------------------------------- /docs/builtin/pt/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/bin.md -------------------------------------------------------------------------------- /docs/builtin/pt/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/bool.md -------------------------------------------------------------------------------- /docs/builtin/pt/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/pt/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/pt/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/bytes.md -------------------------------------------------------------------------------- /docs/builtin/pt/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/callable.md -------------------------------------------------------------------------------- /docs/builtin/pt/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/chr.md -------------------------------------------------------------------------------- /docs/builtin/pt/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/pt/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/compile.md -------------------------------------------------------------------------------- /docs/builtin/pt/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/complex.md -------------------------------------------------------------------------------- /docs/builtin/pt/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/delattr.md -------------------------------------------------------------------------------- /docs/builtin/pt/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/dict.md -------------------------------------------------------------------------------- /docs/builtin/pt/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/dir.md -------------------------------------------------------------------------------- /docs/builtin/pt/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/divmod.md -------------------------------------------------------------------------------- /docs/builtin/pt/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/pt/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/eval.md -------------------------------------------------------------------------------- /docs/builtin/pt/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/exec.md -------------------------------------------------------------------------------- /docs/builtin/pt/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/filter.md -------------------------------------------------------------------------------- /docs/builtin/pt/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/float.md -------------------------------------------------------------------------------- /docs/builtin/pt/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/format.md -------------------------------------------------------------------------------- /docs/builtin/pt/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/pt/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/getattr.md -------------------------------------------------------------------------------- /docs/builtin/pt/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/globals.md -------------------------------------------------------------------------------- /docs/builtin/pt/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/pt/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/hash.md -------------------------------------------------------------------------------- /docs/builtin/pt/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/help.md -------------------------------------------------------------------------------- /docs/builtin/pt/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/hex.md -------------------------------------------------------------------------------- /docs/builtin/pt/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/id.md -------------------------------------------------------------------------------- /docs/builtin/pt/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/import.md -------------------------------------------------------------------------------- /docs/builtin/pt/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/input.md -------------------------------------------------------------------------------- /docs/builtin/pt/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/int.md -------------------------------------------------------------------------------- /docs/builtin/pt/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/pt/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/pt/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/iter.md -------------------------------------------------------------------------------- /docs/builtin/pt/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/len.md -------------------------------------------------------------------------------- /docs/builtin/pt/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/list.md -------------------------------------------------------------------------------- /docs/builtin/pt/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/locals.md -------------------------------------------------------------------------------- /docs/builtin/pt/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/map.md -------------------------------------------------------------------------------- /docs/builtin/pt/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/max.md -------------------------------------------------------------------------------- /docs/builtin/pt/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/pt/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/min.md -------------------------------------------------------------------------------- /docs/builtin/pt/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/next.md -------------------------------------------------------------------------------- /docs/builtin/pt/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/object.md -------------------------------------------------------------------------------- /docs/builtin/pt/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/oct.md -------------------------------------------------------------------------------- /docs/builtin/pt/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/open.md -------------------------------------------------------------------------------- /docs/builtin/pt/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/ord.md -------------------------------------------------------------------------------- /docs/builtin/pt/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/pow.md -------------------------------------------------------------------------------- /docs/builtin/pt/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/print.md -------------------------------------------------------------------------------- /docs/builtin/pt/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/property.md -------------------------------------------------------------------------------- /docs/builtin/pt/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/range.md -------------------------------------------------------------------------------- /docs/builtin/pt/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/repr.md -------------------------------------------------------------------------------- /docs/builtin/pt/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/reversed.md -------------------------------------------------------------------------------- /docs/builtin/pt/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/round.md -------------------------------------------------------------------------------- /docs/builtin/pt/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/set.md -------------------------------------------------------------------------------- /docs/builtin/pt/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/setattr.md -------------------------------------------------------------------------------- /docs/builtin/pt/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/slice.md -------------------------------------------------------------------------------- /docs/builtin/pt/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/sorted.md -------------------------------------------------------------------------------- /docs/builtin/pt/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/pt/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/str.md -------------------------------------------------------------------------------- /docs/builtin/pt/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/sum.md -------------------------------------------------------------------------------- /docs/builtin/pt/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/super.md -------------------------------------------------------------------------------- /docs/builtin/pt/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/tuple.md -------------------------------------------------------------------------------- /docs/builtin/pt/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/type.md -------------------------------------------------------------------------------- /docs/builtin/pt/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/vars.md -------------------------------------------------------------------------------- /docs/builtin/pt/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/pt/zip.md -------------------------------------------------------------------------------- /docs/builtin/ru/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/abs.md -------------------------------------------------------------------------------- /docs/builtin/ru/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/aiter.md -------------------------------------------------------------------------------- /docs/builtin/ru/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/all.md -------------------------------------------------------------------------------- /docs/builtin/ru/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/any.md -------------------------------------------------------------------------------- /docs/builtin/ru/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/ascii.md -------------------------------------------------------------------------------- /docs/builtin/ru/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/bin.md -------------------------------------------------------------------------------- /docs/builtin/ru/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/bool.md -------------------------------------------------------------------------------- /docs/builtin/ru/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/ru/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/ru/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/bytes.md -------------------------------------------------------------------------------- /docs/builtin/ru/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/callable.md -------------------------------------------------------------------------------- /docs/builtin/ru/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/chr.md -------------------------------------------------------------------------------- /docs/builtin/ru/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/ru/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/compile.md -------------------------------------------------------------------------------- /docs/builtin/ru/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/complex.md -------------------------------------------------------------------------------- /docs/builtin/ru/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/delattr.md -------------------------------------------------------------------------------- /docs/builtin/ru/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/dict.md -------------------------------------------------------------------------------- /docs/builtin/ru/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/dir.md -------------------------------------------------------------------------------- /docs/builtin/ru/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/divmod.md -------------------------------------------------------------------------------- /docs/builtin/ru/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/ru/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/eval.md -------------------------------------------------------------------------------- /docs/builtin/ru/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/exec.md -------------------------------------------------------------------------------- /docs/builtin/ru/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/filter.md -------------------------------------------------------------------------------- /docs/builtin/ru/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/float.md -------------------------------------------------------------------------------- /docs/builtin/ru/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/format.md -------------------------------------------------------------------------------- /docs/builtin/ru/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/ru/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/getattr.md -------------------------------------------------------------------------------- /docs/builtin/ru/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/globals.md -------------------------------------------------------------------------------- /docs/builtin/ru/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/ru/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/hash.md -------------------------------------------------------------------------------- /docs/builtin/ru/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/help.md -------------------------------------------------------------------------------- /docs/builtin/ru/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/hex.md -------------------------------------------------------------------------------- /docs/builtin/ru/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/id.md -------------------------------------------------------------------------------- /docs/builtin/ru/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/import.md -------------------------------------------------------------------------------- /docs/builtin/ru/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/input.md -------------------------------------------------------------------------------- /docs/builtin/ru/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/int.md -------------------------------------------------------------------------------- /docs/builtin/ru/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/ru/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/ru/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/iter.md -------------------------------------------------------------------------------- /docs/builtin/ru/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/len.md -------------------------------------------------------------------------------- /docs/builtin/ru/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/list.md -------------------------------------------------------------------------------- /docs/builtin/ru/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/locals.md -------------------------------------------------------------------------------- /docs/builtin/ru/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/map.md -------------------------------------------------------------------------------- /docs/builtin/ru/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/max.md -------------------------------------------------------------------------------- /docs/builtin/ru/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/ru/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/min.md -------------------------------------------------------------------------------- /docs/builtin/ru/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/next.md -------------------------------------------------------------------------------- /docs/builtin/ru/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/object.md -------------------------------------------------------------------------------- /docs/builtin/ru/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/oct.md -------------------------------------------------------------------------------- /docs/builtin/ru/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/open.md -------------------------------------------------------------------------------- /docs/builtin/ru/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/ord.md -------------------------------------------------------------------------------- /docs/builtin/ru/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/pow.md -------------------------------------------------------------------------------- /docs/builtin/ru/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/print.md -------------------------------------------------------------------------------- /docs/builtin/ru/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/property.md -------------------------------------------------------------------------------- /docs/builtin/ru/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/range.md -------------------------------------------------------------------------------- /docs/builtin/ru/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/repr.md -------------------------------------------------------------------------------- /docs/builtin/ru/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/reversed.md -------------------------------------------------------------------------------- /docs/builtin/ru/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/round.md -------------------------------------------------------------------------------- /docs/builtin/ru/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/set.md -------------------------------------------------------------------------------- /docs/builtin/ru/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/setattr.md -------------------------------------------------------------------------------- /docs/builtin/ru/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/slice.md -------------------------------------------------------------------------------- /docs/builtin/ru/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/sorted.md -------------------------------------------------------------------------------- /docs/builtin/ru/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/ru/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/str.md -------------------------------------------------------------------------------- /docs/builtin/ru/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/sum.md -------------------------------------------------------------------------------- /docs/builtin/ru/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/super.md -------------------------------------------------------------------------------- /docs/builtin/ru/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/tuple.md -------------------------------------------------------------------------------- /docs/builtin/ru/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/type.md -------------------------------------------------------------------------------- /docs/builtin/ru/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/vars.md -------------------------------------------------------------------------------- /docs/builtin/ru/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/ru/zip.md -------------------------------------------------------------------------------- /docs/builtin/zh/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/abs.md -------------------------------------------------------------------------------- /docs/builtin/zh/aiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/aiter.md -------------------------------------------------------------------------------- /docs/builtin/zh/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/all.md -------------------------------------------------------------------------------- /docs/builtin/zh/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/any.md -------------------------------------------------------------------------------- /docs/builtin/zh/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/ascii.md -------------------------------------------------------------------------------- /docs/builtin/zh/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/bin.md -------------------------------------------------------------------------------- /docs/builtin/zh/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/bool.md -------------------------------------------------------------------------------- /docs/builtin/zh/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/breakpoint.md -------------------------------------------------------------------------------- /docs/builtin/zh/bytearray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/bytearray.md -------------------------------------------------------------------------------- /docs/builtin/zh/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/bytes.md -------------------------------------------------------------------------------- /docs/builtin/zh/callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/callable.md -------------------------------------------------------------------------------- /docs/builtin/zh/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/chr.md -------------------------------------------------------------------------------- /docs/builtin/zh/classmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/classmethod.md -------------------------------------------------------------------------------- /docs/builtin/zh/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/compile.md -------------------------------------------------------------------------------- /docs/builtin/zh/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/complex.md -------------------------------------------------------------------------------- /docs/builtin/zh/delattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/delattr.md -------------------------------------------------------------------------------- /docs/builtin/zh/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/dict.md -------------------------------------------------------------------------------- /docs/builtin/zh/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/dir.md -------------------------------------------------------------------------------- /docs/builtin/zh/divmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/divmod.md -------------------------------------------------------------------------------- /docs/builtin/zh/enumerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/enumerate.md -------------------------------------------------------------------------------- /docs/builtin/zh/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/eval.md -------------------------------------------------------------------------------- /docs/builtin/zh/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/exec.md -------------------------------------------------------------------------------- /docs/builtin/zh/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/filter.md -------------------------------------------------------------------------------- /docs/builtin/zh/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/float.md -------------------------------------------------------------------------------- /docs/builtin/zh/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/format.md -------------------------------------------------------------------------------- /docs/builtin/zh/frozenset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/frozenset.md -------------------------------------------------------------------------------- /docs/builtin/zh/getattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/getattr.md -------------------------------------------------------------------------------- /docs/builtin/zh/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/globals.md -------------------------------------------------------------------------------- /docs/builtin/zh/hasattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/hasattr.md -------------------------------------------------------------------------------- /docs/builtin/zh/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/hash.md -------------------------------------------------------------------------------- /docs/builtin/zh/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/help.md -------------------------------------------------------------------------------- /docs/builtin/zh/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/hex.md -------------------------------------------------------------------------------- /docs/builtin/zh/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/id.md -------------------------------------------------------------------------------- /docs/builtin/zh/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/import.md -------------------------------------------------------------------------------- /docs/builtin/zh/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/input.md -------------------------------------------------------------------------------- /docs/builtin/zh/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/int.md -------------------------------------------------------------------------------- /docs/builtin/zh/isinstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/isinstance.md -------------------------------------------------------------------------------- /docs/builtin/zh/issubclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/issubclass.md -------------------------------------------------------------------------------- /docs/builtin/zh/iter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/iter.md -------------------------------------------------------------------------------- /docs/builtin/zh/len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/len.md -------------------------------------------------------------------------------- /docs/builtin/zh/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/list.md -------------------------------------------------------------------------------- /docs/builtin/zh/locals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/locals.md -------------------------------------------------------------------------------- /docs/builtin/zh/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/map.md -------------------------------------------------------------------------------- /docs/builtin/zh/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/max.md -------------------------------------------------------------------------------- /docs/builtin/zh/memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/memoryview.md -------------------------------------------------------------------------------- /docs/builtin/zh/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/min.md -------------------------------------------------------------------------------- /docs/builtin/zh/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/next.md -------------------------------------------------------------------------------- /docs/builtin/zh/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/object.md -------------------------------------------------------------------------------- /docs/builtin/zh/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/oct.md -------------------------------------------------------------------------------- /docs/builtin/zh/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/open.md -------------------------------------------------------------------------------- /docs/builtin/zh/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/ord.md -------------------------------------------------------------------------------- /docs/builtin/zh/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/pow.md -------------------------------------------------------------------------------- /docs/builtin/zh/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/print.md -------------------------------------------------------------------------------- /docs/builtin/zh/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/property.md -------------------------------------------------------------------------------- /docs/builtin/zh/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/range.md -------------------------------------------------------------------------------- /docs/builtin/zh/repr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/repr.md -------------------------------------------------------------------------------- /docs/builtin/zh/reversed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/reversed.md -------------------------------------------------------------------------------- /docs/builtin/zh/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/round.md -------------------------------------------------------------------------------- /docs/builtin/zh/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/set.md -------------------------------------------------------------------------------- /docs/builtin/zh/setattr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/setattr.md -------------------------------------------------------------------------------- /docs/builtin/zh/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/slice.md -------------------------------------------------------------------------------- /docs/builtin/zh/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/sorted.md -------------------------------------------------------------------------------- /docs/builtin/zh/staticmethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/staticmethod.md -------------------------------------------------------------------------------- /docs/builtin/zh/str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/str.md -------------------------------------------------------------------------------- /docs/builtin/zh/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/sum.md -------------------------------------------------------------------------------- /docs/builtin/zh/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/super.md -------------------------------------------------------------------------------- /docs/builtin/zh/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/tuple.md -------------------------------------------------------------------------------- /docs/builtin/zh/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/type.md -------------------------------------------------------------------------------- /docs/builtin/zh/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/vars.md -------------------------------------------------------------------------------- /docs/builtin/zh/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/builtin/zh/zip.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/de/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/de/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/en/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/en/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/es/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/es/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/fr/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/fr/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/ja/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ja/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/ko/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ko/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/pt/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/pt/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/ru/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/ru/sets.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/debugging.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/decorators.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/functions.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/json-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/json-yaml.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/main.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/oop-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/oop-basics.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/packaging.md -------------------------------------------------------------------------------- /docs/cheatsheet/zh/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/cheatsheet/zh/sets.md -------------------------------------------------------------------------------- /docs/modules/de/copy-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/de/copy-module.md -------------------------------------------------------------------------------- /docs/modules/de/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/de/csv-module.md -------------------------------------------------------------------------------- /docs/modules/de/json-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/de/json-module.md -------------------------------------------------------------------------------- /docs/modules/de/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/de/os-module.md -------------------------------------------------------------------------------- /docs/modules/de/random-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/de/random-module.md -------------------------------------------------------------------------------- /docs/modules/de/shelve-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/de/shelve-module.md -------------------------------------------------------------------------------- /docs/modules/en/copy-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/en/copy-module.md -------------------------------------------------------------------------------- /docs/modules/en/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/en/csv-module.md -------------------------------------------------------------------------------- /docs/modules/en/json-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/en/json-module.md -------------------------------------------------------------------------------- /docs/modules/en/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/en/os-module.md -------------------------------------------------------------------------------- /docs/modules/en/random-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/en/random-module.md -------------------------------------------------------------------------------- /docs/modules/en/shelve-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/en/shelve-module.md -------------------------------------------------------------------------------- /docs/modules/es/copy-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/es/copy-module.md -------------------------------------------------------------------------------- /docs/modules/es/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/es/csv-module.md -------------------------------------------------------------------------------- /docs/modules/es/json-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/es/json-module.md -------------------------------------------------------------------------------- /docs/modules/es/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/es/os-module.md -------------------------------------------------------------------------------- /docs/modules/es/random-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/es/random-module.md -------------------------------------------------------------------------------- /docs/modules/es/shelve-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/es/shelve-module.md -------------------------------------------------------------------------------- /docs/modules/fr/copy-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/fr/copy-module.md -------------------------------------------------------------------------------- /docs/modules/fr/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/fr/csv-module.md -------------------------------------------------------------------------------- /docs/modules/fr/json-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/fr/json-module.md -------------------------------------------------------------------------------- /docs/modules/fr/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/fr/os-module.md -------------------------------------------------------------------------------- /docs/modules/fr/random-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/fr/random-module.md -------------------------------------------------------------------------------- /docs/modules/fr/shelve-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/fr/shelve-module.md -------------------------------------------------------------------------------- /docs/modules/ja/copy-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ja/copy-module.md -------------------------------------------------------------------------------- /docs/modules/ja/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ja/csv-module.md -------------------------------------------------------------------------------- /docs/modules/ja/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ja/os-module.md -------------------------------------------------------------------------------- /docs/modules/ko/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ko/csv-module.md -------------------------------------------------------------------------------- /docs/modules/ko/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ko/os-module.md -------------------------------------------------------------------------------- /docs/modules/pt/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/pt/csv-module.md -------------------------------------------------------------------------------- /docs/modules/pt/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/pt/os-module.md -------------------------------------------------------------------------------- /docs/modules/ru/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ru/csv-module.md -------------------------------------------------------------------------------- /docs/modules/ru/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/ru/os-module.md -------------------------------------------------------------------------------- /docs/modules/zh/csv-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/zh/csv-module.md -------------------------------------------------------------------------------- /docs/modules/zh/os-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/docs/modules/zh/os-module.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/blog/kwargs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/blog/kwargs.jpg -------------------------------------------------------------------------------- /public/blog/poetry-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/blog/poetry-1.jpg -------------------------------------------------------------------------------- /public/blog/poetry-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/blog/poetry-2.jpg -------------------------------------------------------------------------------- /public/blog/poetry-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/blog/poetry-3.jpg -------------------------------------------------------------------------------- /public/blog/python-gil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/blog/python-gil.jpg -------------------------------------------------------------------------------- /public/blog/sets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/blog/sets.jpg -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/lexend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/fonts/lexend.txt -------------------------------------------------------------------------------- /public/fonts/lexend.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/fonts/lexend.woff2 -------------------------------------------------------------------------------- /public/labex-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/labex-logo-dark.svg -------------------------------------------------------------------------------- /public/labex-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/labex-logo-light.svg -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/screenshots/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/screenshots/dark.png -------------------------------------------------------------------------------- /public/screenshots/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/screenshots/light.png -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/public/sw.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/update-quiz-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/scripts/update-quiz-format.py -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/auto-imports.d.ts -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/components/HomePage.vue -------------------------------------------------------------------------------- /src/components/Prose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/components/Prose.vue -------------------------------------------------------------------------------- /src/components/ui/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/components/ui/Tag.vue -------------------------------------------------------------------------------- /src/composables/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/composables/dark.ts -------------------------------------------------------------------------------- /src/composables/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/composables/meta.ts -------------------------------------------------------------------------------- /src/composables/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/composables/scroll.ts -------------------------------------------------------------------------------- /src/composables/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/composables/toc.ts -------------------------------------------------------------------------------- /src/composables/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/composables/useAuth.ts -------------------------------------------------------------------------------- /src/composables/useI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/composables/useI18n.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/layouts/article.vue -------------------------------------------------------------------------------- /src/layouts/blog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/layouts/blog.vue -------------------------------------------------------------------------------- /src/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/layouts/default.vue -------------------------------------------------------------------------------- /src/layouts/empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/layouts/empty.vue -------------------------------------------------------------------------------- /src/layouts/fullPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/layouts/fullPage.vue -------------------------------------------------------------------------------- /src/layouts/fullWidth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/layouts/fullWidth.vue -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/es.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/ja.json -------------------------------------------------------------------------------- /src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/ko.json -------------------------------------------------------------------------------- /src/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/pt.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/locales/zh.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modules/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/modules/analytics.ts -------------------------------------------------------------------------------- /src/modules/pinia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/modules/pinia.ts -------------------------------------------------------------------------------- /src/pages/[...all].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/[...all].vue -------------------------------------------------------------------------------- /src/pages/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/blog/index.vue -------------------------------------------------------------------------------- /src/pages/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/changelog.md -------------------------------------------------------------------------------- /src/pages/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/contributing.md -------------------------------------------------------------------------------- /src/pages/de/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/de/blog/index.vue -------------------------------------------------------------------------------- /src/pages/de/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/de/changelog.vue -------------------------------------------------------------------------------- /src/pages/de/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/de/contributing.vue -------------------------------------------------------------------------------- /src/pages/de/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/de/index.vue -------------------------------------------------------------------------------- /src/pages/es/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/es/blog/index.vue -------------------------------------------------------------------------------- /src/pages/es/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/es/changelog.vue -------------------------------------------------------------------------------- /src/pages/es/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/es/contributing.vue -------------------------------------------------------------------------------- /src/pages/es/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/es/index.vue -------------------------------------------------------------------------------- /src/pages/fr/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/fr/blog/index.vue -------------------------------------------------------------------------------- /src/pages/fr/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/fr/changelog.vue -------------------------------------------------------------------------------- /src/pages/fr/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/fr/contributing.vue -------------------------------------------------------------------------------- /src/pages/fr/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/fr/index.vue -------------------------------------------------------------------------------- /src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/index.vue -------------------------------------------------------------------------------- /src/pages/ja/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ja/blog/index.vue -------------------------------------------------------------------------------- /src/pages/ja/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ja/changelog.vue -------------------------------------------------------------------------------- /src/pages/ja/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ja/contributing.vue -------------------------------------------------------------------------------- /src/pages/ja/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ja/index.vue -------------------------------------------------------------------------------- /src/pages/ko/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ko/blog/index.vue -------------------------------------------------------------------------------- /src/pages/ko/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ko/changelog.vue -------------------------------------------------------------------------------- /src/pages/ko/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ko/contributing.vue -------------------------------------------------------------------------------- /src/pages/ko/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ko/index.vue -------------------------------------------------------------------------------- /src/pages/pt/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/pt/blog/index.vue -------------------------------------------------------------------------------- /src/pages/pt/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/pt/changelog.vue -------------------------------------------------------------------------------- /src/pages/pt/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/pt/contributing.vue -------------------------------------------------------------------------------- /src/pages/pt/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/pt/index.vue -------------------------------------------------------------------------------- /src/pages/robots.txt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/robots.txt.vue -------------------------------------------------------------------------------- /src/pages/ru/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ru/blog/index.vue -------------------------------------------------------------------------------- /src/pages/ru/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ru/changelog.vue -------------------------------------------------------------------------------- /src/pages/ru/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ru/contributing.vue -------------------------------------------------------------------------------- /src/pages/ru/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/ru/index.vue -------------------------------------------------------------------------------- /src/pages/zh/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/zh/blog/index.vue -------------------------------------------------------------------------------- /src/pages/zh/changelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/zh/changelog.vue -------------------------------------------------------------------------------- /src/pages/zh/contributing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/zh/contributing.vue -------------------------------------------------------------------------------- /src/pages/zh/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/pages/zh/index.vue -------------------------------------------------------------------------------- /src/store/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/store/navigation.ts -------------------------------------------------------------------------------- /src/store/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/store/reader.ts -------------------------------------------------------------------------------- /src/styles/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/styles/docsearch.css -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/styles/markdown.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/src/types/ui.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/tests/basic.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/tsconfig.worker.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/vite.config.ts -------------------------------------------------------------------------------- /worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/worker.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labex-labs/python-cheatsheet/HEAD/wrangler.toml --------------------------------------------------------------------------------