An open API service indexing awesome lists of open source software.

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

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)