This is a basic python course, with a final integrator project which is the rock, paper, scissors game.
For practice we can use: replit.com
- Strings
- Integers
- Float
- Boolean
- [ ] = Lists
- ( ) = Tuples
- { } = Dictionaries / sets:
Mutable | Ordered | Indexing / slicing | Duplicated elements | |
---|---|---|---|---|
List | YES | YES | YES | YES |
Tuple | NO | YES | YES | YES |
SET | YES | NO | NO | NO |