Tech With Tim Logo
Go back

Basic Operators & Input

Getting Input

Printing and displaying things to the user is great. However, we want the user to be able to talk back to us and give us information. This is known as input!

To get input from the user we can use the keyword "input". This will allow for the user to input some text and hit the enter key when they are done. Since we typically want to store what the user inputted we declare a variable to hold that input (see below).

print("What is your name?")
name = input()
print(name)  # This will print out whatever the user typed 

Inside the brackets after the input keyword we can actually put what is known as a prompt. This will be printed on the same line that the user is typing on. It's typically a good idea to end your prompt with a colon or a space so the users input doesn't appear to be squeezed together with the programs output.

name = input("What is your name: ")
print(name) 

# The program would do something like this
What is your name: tim
tim

More About Print

The print function is capable of printing multiple things on the same line. If we separate things that we want to print by a comma all of them will appear on the same line. The print function even includes a space before and after each item so they don't appear squeezed together.

name = input("What is your name: ")
print("Well hello there", name) 

# The program would do something like this
What is your name: tim
Well hello there tim

Operators

In python there are operators that we can use on certain data types. Typically when we use operators we must make sure that the items we are doing the operations on are of them same data type. For example, trying to add a str to an int will result in a error.

The main operators in python are:

+  # addition 
-  # subtraction
/  # division
*  # multiplication 
** # exponential
// # integer division (removes decimal portion)
%  # modulus (gives remainder of division) 

We can use all of these operators on int's and floats's but not on the other data types. The only exception is that we are able to use the + and * operator on str's in a special way.

x = 5
y = 6

d = 12 % 5     # d is 2
z = x + y      # z is 11
w = x - y      # w is -1
q = 5 * 6      # q is 30
u = 10 / x     # u is 2.0
p = 10 * 2.0   # p is 20.0
t = x ** 3     # t is 125
c = 28 // y    # c is 5

Order of Operations

Python follows the standard order of operations (BEDMAS).

  1. Brackets
  2. Exponents
  3. Multiplication
  4. Division
  5. Addition
  6. Subtraction
x = (1+3) / 2  # x is 2.0
y = 4 + 5 * 7  # y is 39

Operations on Strings

Python allows for the use of the addition (+) operator and multiplication (*) operator on strings. Adding two strings is known as concatenation.

Adding one string to another will simply add it to the end. Multiplying a string by an integer n will repeat that string n times.

newStr = "hello" + "tim"  # newStr is "hellotim"
newStr2 = "python" * 3    # newStr2 is "pythonpythonpython"

Bringing it All Together

To apply everything we've just learned we want to create a program that asks the user for two numbers and outputs their sum. To do this we try the following:

num1 = input("Pick a Number: ")
num2 = input("Pick Another Number: ")

SUM = num1 + num2

print(SUM)

But when we run the program we get output that looks like this:

output-272x68.png

When we added the two numbers together we were actually adding two strings! This is because whenever we get input from the user it comes in as a string. So when the user typed 3 and 4 our program saw it as "3" and "4", instead of adding them mathematically it concatenated them.

To fix this we must convert each of our inputs into an integer first. We can convert a string into an integer by using the function "int()".

num1 = "43"
num2 = int(num1)  # Now num2 is the int 43 

So our program should now look like this:

num1 = input("Pick a Number: ")
num2 = input("Pick Another Number: ")

SUM = int(num1) + int(num2)

print(SUM)

And now we should be getting the correct output of 7!

Design & Development by Ibezio Logo