First_Name = "Billie"
Last_Name = "Eilish"
print(First_Name + Last_name)
BillieEilish
print(type((3 + 3)/3))
Float
input()
What is the following operator "="
Assignment operator
The result of 9 // 5
What is 1?
What does the following expression produce & what type?
"abc" * 2 + "xyz"
abcabcxyz
a = input("What month were you born?")
print("a")
a
T or F
x = "John"
# is the same as
x = 'John'
True
What does the following expression produce
(4+3) * 2 +1
15
print("My favorite food is \n Pizza")
My favorite food is
Pizza (space before pizza)
What type is variable x
x = 4
x = "Sally"
String
Denoted as '%', this operator returns the remainder of a division operation.
What is the modulus or Modulo?
print( “testing”, 123, “testing”)
testing 123 testing
What Types are variables y and z?
y = 3
z = float(y)
Int
float
What does the following operator do?
**
Raise to the power