├── 3.6 └── strings.py ├── 3.7 └── dataclass.py ├── LICENSE ├── README.md ├── classes.py ├── counter.py ├── datatypes.py ├── decorators.py ├── dictionaries.py ├── functions.py ├── helper_functions.py ├── lists.py ├── one-liners.py ├── tuples.py └── yield.py /3.6/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/3.6/strings.py -------------------------------------------------------------------------------- /3.7/dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/3.7/dataclass.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/README.md -------------------------------------------------------------------------------- /classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/classes.py -------------------------------------------------------------------------------- /counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/counter.py -------------------------------------------------------------------------------- /datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/datatypes.py -------------------------------------------------------------------------------- /decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/decorators.py -------------------------------------------------------------------------------- /dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/dictionaries.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/functions.py -------------------------------------------------------------------------------- /helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/helper_functions.py -------------------------------------------------------------------------------- /lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/lists.py -------------------------------------------------------------------------------- /one-liners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/one-liners.py -------------------------------------------------------------------------------- /tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/tuples.py -------------------------------------------------------------------------------- /yield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazlum/python-tricks/HEAD/yield.py --------------------------------------------------------------------------------