During my NYSC service, I was deployed to Imo State. I ended up at a Christian continuing education school where I taught BASIC programming and Spreadsheet (using Lotus 123).
I came up with a condensed 19-page book/manual to teach the BASIC class.
I am uploading it here since a smart person I who is learning Python with very little computing background, said it was very hard. Hopefully it is a gentler introduction to programming since BASIC is considered the easiest programming language to learn*
There are many ways to get a BASIC interpreter (or compiler) – the application that runs your BASIC program after you write them, but I recommend QB64 since it is easy to setup (i.e., download the compressed/zip file; extract it to a place on your Windows system, launch/execute it by double-clicking on the qb64.exe application file in the extracted folder. I suggest renaming the extracted folder to something like qb64 – the default is way too long). You can immediately start typing your program into the editor. To run the program you have typed, press the F5 key on your keyboard and watch the magic happen!
*BASIC (Beginner’s All-purpose Symbolic Instruction Code) is widely considered one of the easiest programming languages to learn, especially for beginners. Its simple syntax and user-friendly commands make it accessible, and it’s often used to teach basic programming concepts.

