https://github.com/trisha/python-playground
Documentation for manipulating data structures in Python.
https://github.com/trisha/python-playground
Last synced: 3 months ago
JSON representation
Documentation for manipulating data structures in Python.
- Host: GitHub
- URL: https://github.com/trisha/python-playground
- Owner: trisha
- Created: 2021-05-07T20:21:51.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-09T05:50:26.000Z (about 5 years ago)
- Last Synced: 2025-02-28T08:56:43.081Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-cheatsheet
Documentation for manipulating data structures in Python.
## Strings
print('a' + 'b') # Prints 'ab.'
string = 'hippopotamus'
print(string[1:5]) # Prints "ippo", index 1 inclusive, index 5 exclusive.
## Arrays
## Dictionaries
## Iterations
## Sorts