Programming Resources
Lecture slides and notes for Programming Fundamentals & Python(For Non Engineering Students) in Programming Resources by Md Ahbab. 44 pages.

Programming and Python C la s s 1 o f t h e c ou r s e , 2 h ou r s From your first line of code to a small business tool you can actually use Course designed by Md Ahbab Hamid Khan. Made for non- Engineering students, no maths background needed.
What We Will Do Today Two hours, one clear path Programming and Python | Md Ahbab Hamid Khan 2 1. Understand What programming is, where it came from, and why it matters for you. 2. Explore Where code is used in business, planning in plain English, and types of languages. 3. Set up A study plan of 5 hours a week, plus the Antigravity coding app on your laptop. 4. Learn Python Variables, text, numbers, lists, price tables, decisions, and repeating steps. 5. Build A small app that checks if a small business is making money or losing it. 6. Look ahead How AI helps us daily, and how Python powers and builds AI.
What Is Programming? Giving clear instructions to a machine Programming and Python | Md Ahbab Hamid Khan 3 # A recipe a computer can follow flour = 500 water = 300 if water < flour / 2: print('Add more water') else: print('Mix and bake') Same idea as a cooking recipe, only stricter. The main idea – A computer is fast but not clever. It only does what you say. – A program is a list of steps written in a language it understands. – Programming means breaking a problem into small, exact steps. – If the steps are wrong, the answer is wrong. It never guesses.