The Super Simple Programming Book

This document was uploaded by one of our users. The uploader already confirmed that they had the permission to publish it. If you are author/publisher or own the copyright of this documents, please report to us by using this DMCA report form.

Simply click on the Download Book button.

Yes, Book downloads on Ebookily are 100% Free.

Sometimes the book is free on Amazon As well, so go ahead and hit "Search on Amazon"

I have been a professional programmer for the past 27 years and a part-time computer science professor for the past seven years. Programming is easy for me now, but I still remember the early days when it was a struggle. What I lacked was a basic understanding of the fundamental concepts found in most programming languages. I did not know how or why to use a loop or selection statement. I did not understand the true value of arrays. More importantly, I did not know how to combine the different concepts to complete a programming task. The Super Simple Programming Book is for anyone who wants to learn programming. No prior programming experience is required. This book teaches fundamental programming concepts through short, simple Python programs. It explains programming in a way that is easy to understand. My college students often tell me that programming is so much easier when I explain it to them. I have taken that approach while writing this book. The goal of this book is not to teach you everything about Python programming. Instead, the goal is to teach you how to program. Then you will be able to practice programming on your own and become a better programmer. Lastly, you can do this. There is nothing mystifying about programming. If you can follow instructions, think logically, or complete a puzzle, you can write a program. It is easier than you think. You just need to understand the basics. The Super Simple Programming Book will teach you the basics and make them seem simple.

Author(s): Edwin Ross Torres
Year: 2018

Language: English
Pages: 161

Acknowledgments i
Preface ii
1 Hello World! 1
2 Data 7
3 Operators 19
4 Output 29
5 Input 35
6 Selection 42
7 Repetition 49
8 Lists 59
9 Modular Programming 67
10 Using Libraries 79
11 Putting it All Together 83
12 Final Thoughts 108
About the Author 109