Lecture 0
Lecture 0
Notice that this equal = sign in the middle of name = input("What's your
name? ") has a special role in programming. This equal sign literally
assigns what is on the right to what is on the left. Therefore, the value
returned by input("What's your name? ") is assigned to name.
Comments are a way for programmers to track what they are doing in
their programs and even inform others about their intentions for a
block of code. In short, they are notes for yourself and others who will
see your code!
You can add comments to your program to be able to see what it is
that your program is doing. You might edit your code as follows:
# Ask the user for their name
name = input("What's your name? ")
print("hello,")
print(name)
Comments can also serve as a to-do list for you.
Pseudocode
Using the title method, it would title case the user’s name:
# Ask the user for their name
name = input("What's your name? ")
# Remove whitespace from the str
name = name.strip()
# Capitalize the first letter of each word
name = name.title()
# Print the output
print(f"hello, {name}")
By this point, you might be very tired of typing python repeatedly in the
terminal window. You cause use the up arrow of your keyboard to
recall the most recent terminal commands you have made.
Notice that you can modify your code to be more efficient:
# Ask the user for their name
name = input("What's your name? ")
# Remove whitespace from the str and capitalize the first letter of each word
name = name.strip().title()
# Print the output
print(f"hello, {name}")
x = input("What's x? ")
y = input("What's y? ")
z=x+y
print(z)
The result is now correct. The use of int(x) is called “casting,” where a
value is temporarily changed from one type of variable (in this case, a
string) to another (here, an integer).
This illustrates that you can run functions on functions. The inner
function is run first, and then the outer one is run. First,
the input function is run. Then, the int function.
This change allows your user to enter 1.2 and 3.4 to present a total
of 4.6.
Let’s imagine, however, that you want to round the total to the nearest
integer. Looking at the Python documentation for round, you’ll see that
the available arguments are round(number[n, ndigits]). Those square
brackets indicate that something optional can be specified by the
programmer. Therefore, you could do round(n) to round a digit to its
nearest integer. Alternatively, you could code as follows:
# Get the user's input
x = float(input("What's x? "))
y = float(input("What's y? "))
# Create a rounded result
z = round(x + y)
# Print the result
print(z)
Let’s imagine that we want to round this down. We could modify our
code as follows:
# Get the user's input
x = float(input("What's x? "))
y = float(input("What's y? "))
# Calculate the result and round
z = round(x / y, 2)
# Print the result
print(z)
As we might expect, this will round the result to the nearest two
decimal points.
This cryptic fstring code displays the same as our prior rounding
strategy.
We can better our code to create our own special function that says
“hello” for us!
Erasing all our code in our text editor, let’s start from scratch:
name = input("What's your name? ")
hello()
print(name)
Attempting to run this code, your compiler will throw an error. After all,
there is no defined function for hello.
Here, in the first lines, you are creating your hello function. This time,
however, you are telling the compiler that this function takes a single
parameter: a variable called to. Therefore, when you call hello(name) the
computer passes name into the hello function as to. This is how we pass
values into functions. Very useful! Running python hello.py in the
terminal window, you’ll see that the output is much closer to our ideal
presented earlier in this lecture.
Test out your code yourself. Notice how the first hello will behave as
you might expect, and the second hello, which is not passed a value,
will, by default, output hello, world.
We don’t have to have our function at the start of our program. We can
move it down, but we need to tell the compiler that we have
a main function and a separate hello function.
def main():
# Output using our own function
name = input("What's your name? ")
hello(name)
# Output without passing the expected arguments
hello()
# Create our own function
def hello(to="world"):
print("hello,", to)
The following very small modification will call the main function and
restore our program to working order:
def main():
# Output using our own function
name = input("What's your name? ")
hello(name)
# Output without passing the expected arguments
hello()
# Create our own function
def hello(to="world"):
print("hello,", to)
main()
Returning Values
You can imagine many scenarios where you don’t just want a function
to perform an action but also to return a value back to the main
function. For example, rather than simply printing the calculation of x +
y, you may want a function to return the value of this calculation back
to another part of your program. This “passing back” of a value we call
a return value.
Returning to our calculator.py code by typing code calculator.py. Erase all
code there. Rework the code as follows:
def main():
x = int(input("What's x? "))
print("x squared is", square(x))
def square(n):
return n * n
main()