Questions tagged [python]
Use this tag only when the language used would affect the question significantly (if your question uses Python as an example, but does not focus on the language itself, you need not use the tag).
3 questions from the last 365 days
0
votes
3
answers
172
views
Why do I struggle to apply Python logic when solving basic problems?
I'm learning Python and I'm having trouble applying logical thinking when trying to solve basic exercises or homework.
Every time I try to write code, I end up using random solutions that don't make ...
3
votes
1
answer
65
views
"checklist" for teaching beginners (in python) / books to learn to teach
Programming can demand knowledge of a lot of specific facts, like range(0,10) includes the 0 but not the 10, ...
7
votes
4
answers
2k
views
Abstraction in Python - are ABCs required? (I'm writing a lesson)
I'm designing a lesson on OOP for my high school class that uses Python. After reading the definition of abstraction from the textbook, I feel I understand what it is, however whenever I google '...