Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 905 Bytes

File metadata and controls

29 lines (17 loc) · 905 Bytes

Learning Python

This repo is just where I’ve been keeping small Python scripts while learning.

Most of them come from things I didn’t fully understand at first,
so I tried to break them down in simple ways and test them myself.


What I’ve been working on

Recently I kept getting stuck on a few basic things:

  • how self actually works in classes (especially checking with id())
  • iterators and how they move through data
  • what a for loop is really doing behind the scenes

These felt simple at first, but got confusing when I tried to explain them or debug issues.


Most files here are small experiments.

Sometimes I just write something, run it, break it, and try again.
Then leave a short note about what I misunderstood.

Some scripts under /scripts are very basic — I was just testing syntax or small ideas at the time.

Not everything is clean or complete yet.