We can draw 2-dimensional graphics in python using a module in Python called turtle. To see more documentation about Turtle visit this website. Step 1: To start using the module type: import [...]
What if within a single comparison we want to check to see that more than one thing is true or we want to check that at least one thing is true? First, we’ll talk about the logical [...]
Case sensitivity can cause a problem: Suppose we want to ask the user what his destination is when he is at the airport. Based on his answer we want to tell him he is at the wrong gate or not. [...]
So you’ve learned about the print function, input function, and string concatenation. Let’s make use of all of these concepts. Challenge 1: We are at the airport, ready to go to the [...]
These are notes for Day 1 part 2. Changing Data Types Going from an Integer to a String What data type we are dealing with can make a difference. You may encounter a situation where you [...]