https://github.com/luisenmarroquin/python-examples
Small examples of Python 3 courses
https://github.com/luisenmarroquin/python-examples
console console-application data-types dictionaries dictionary functions list lists py pylint pylintrc python python3 requirements script tkinter tuple tuples
Last synced: about 1 month ago
JSON representation
Small examples of Python 3 courses
- Host: GitHub
- URL: https://github.com/luisenmarroquin/python-examples
- Owner: LuisEnMarroquin
- License: mit
- Created: 2020-05-07T21:20:54.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2020-09-21T02:01:18.000Z (over 5 years ago)
- Last Synced: 2025-11-07T12:05:44.914Z (7 months ago)
- Topics: console, console-application, data-types, dictionaries, dictionary, functions, list, lists, py, pylint, pylintrc, python, python3, requirements, script, tkinter, tuple, tuples
- Language: Python
- Homepage:
- Size: 168 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python examples
## Tuples
Are immutable lists, are not modifiable after their creation. They may or not have parenthesis
* Tuples are faster and take up less space than lists
* Can be used as keys in a dictionary (lists can't)
* If they allow to check if an element is in a tuple
* Adding, removing or moving elements is not allowed (append, extend, remove)
## Resources
* [Tkinter button](https://www.tutorialspoint.com/python/tk_button.htm)
* [Tkinter examples](https://likegeeks.com/python-gui-examples-tkinter-tutorial)