Deep Dive Into Python

Python for Beginners

 
The important truth is that learning to program is much more difficult than learning a programming language. Wait, what? You might be asking yourself what the difference is, and if so, you’re not alone.
 
When one learns their first programming language, one must also learn to program–that is, not just the syntax of this new language, but why programmers use certain constructs and how and why they combine those constructs to solve problems.
 
It’s quite easy to explain the art of programming (and yes, it’s an art, but we’ll get to that later). Programming can be boiled down to this:
  1. breaking a problem down into a series of steps;
  2. converting each step into Python or whatever language you’re working with
See? It’s quite easy to explain. Unfortunately, programming, like many things which are easy to explain, is quite difficult to do.
 
What could go wrong?
 
Well, for one thing, the steps have to be executed in the correct order. If you break down the problem into the correct steps but don’t get the order right, your code will not work.
 
What else could go wrong?
 
You could leave out a step. This happens more often than you’d think. If I ask you how to solve a problem you have solved many times in your head, you’ll often leave out a step.
 
What else could go wrong?
 
You could mistranslate a step into the code. You got the steps right, but the code you wrote does not actually perform the step. Your steps (written in English, or pseudocode–half English and half programming language) are correct, but one of more them was improperly translated.
 
Your task, as a beginning programmer is as follows–DO NOT WRITE ANY CODE until you’re written down the steps. If you start coding before you know the steps, how on earth are you going to get it right? It’s sort of like monkeys typing on typewriters–eventually one of them might end up writing Shakespeare, but most of them won’t. (Not that I am comparing you to a monkey, but rather, the action of writing code without knowing what you are writing–there’s no way you’ll end up with correct code if you do that.)
 
Here’s an example to get us started. Suppose you want to write a program which prompts the user for a number, and your program will tell the user whether the number is odd or even. Not earthshaking, but we’re beginners here. You have to crawl before you can walk. Programming is a skill, and like any skill, there will be a time when you don’t really possess it.
 
OK. Let’s get started. You ask me for a number. I say “57.” You say “odd.” How did you know that? What did you do in your head to elicit the response of “odd”? Let’s write down the steps:
  1. Get a number from the user
  2. Figure out the remainder when dividing that number by 2
  3. If the remainder is 0, the number is even, otherwise, it’s odd
Those are the steps. Don’t write any code yet! Let’s rewrite the above in pseudocode. I typically have students write their pseudocode as comments, so let’s do that,
  1. # prompt user for a number  
  2. # if remainder when dividing the number by 2 is 0 then  
  3. # print "even"  
  4. # else  
  5. # print "odd"  
Now, let’s convert the steps into Python.
  1. # prompt user for a number  
  2. number = input('Enter a number and I will tell you odd or even: ')  
  3. # if remainder when dividing the number by 2 is 0 then  
  4. if number % 2 == 0:  
  5. print('even')  
  6. else  
  7. print('odd')  
It’s not going to work. Do you see the problem? It’s difficult to see. Let’s try it.
  1. >>> number = input('Enter a number and I will tell you odd or even: ')  
  2. Enter a number and I will tell you odd or even: 57  
  3. >>> if number % 2 == 0:  
  4. ... print('even')  
  5. ...  
  6. Traceback (most recent call last):  
  7. File "<stdin>", line 1in <module>  
  8. TypeError: not all arguments converted during string formatting  
That error message is not at all helpful.
 
The problem is – the input() function, which prompts the user for input and returns what the user typed…wait, did you see it? No? What does input() return? Let’s try it so we can answer our own question.
  1. >>> name = input('Enter your name: ')  
  2. Enter your name: Dave  
  3. >>> name  
  4. 'Dave'  
  5. >>> number = input('Enter a number: ')  
  6. Enter a number: 5  
  7. >>> number  
  8. '5'  
Aha! It doesn’t matter what we call the variable, input()always returns a string.
 
And then we tried to use the % (modulus) operator to find the remainder when dividing a string by 2! You can’t do that. We have to take what the user typed and convert it to an integer,
  1.  >>> number = int(number)  
  2.  >>> number  
  3. 5  
Now we’re cooking with gas!
  1. >>> if number % 2 == 0:  
  2. ... print('even')  
  3. ... else:  
  4. ... print('odd')  
  5. ...  
  6. odd  
…and we have a working program.
 
Here’s the thing–never in a million years would you have written down the step “Convert string response from the user into an integer”. Because you do that implicitly in your brain. In fact, when you ask your friend to “pick a number”, you expect a number and assuming your friend isn’t joking around, your friend will respond with a number. Your brain recognizes the utterance as a number and you start to do your division on it (or more likely, you simply think about the last digit and divide that by 2…or you simply note whether the final digit is 0, 2, 4, 6, or 8–same difference.)
 
So you see it isn’t quite as simple as I’ve made out to be. But I promise you, if you write down the steps first, then convert the steps to Python (or some other language), you’ll be on the right track, and on a much righter track than if you start to write code first. Sometimes I’ll work with a student whose code doesn’t work and I’ll point to a line of code the student wrote:
 
Me: “What does that do?”
Student: “I don’t know”
 
Me: “Why did you write that?”
Student: “I don’t know”
 
At that point, I know the answer to my next question: “Did you convert the problem into a series of pseudocode steps?” So I erase all their code and get them to do that. And you know what? It works. Not right away, but eventually. This is tough stuff. The worst thing you can do is assume coding is easy. You’ll find out soon enough that you’re wrong, and to make matters worse, you’ll be discouraged.
  • Do you play guitar?
  • Do you make furniture?
  • Do you ride a bicycle?
  • Do you ski?
If I ask enough of these questions, you’ll surely say yes to one of them. Do you remember a time when you couldn’t actually perform that skill at all? Do you remember struggling to get better at that skill? Did you ever get discouraged?
 
I think you get my point.
 
Remember when I said programming is an art? Sounds like it’s a straightforward decomposition of a problem into steps, and then a translation of those steps into code. Not much room for art in that process, is there? I believe there is.
 
in their heads. Don’t get me wrong, even experienced programmers write things down on occasion. But they often don’t need to.
 
But make no mistake – they are following the same pattern - Breaking a problem down into steps and converting those steps. If you can do that, you can write code.