What is code?
How humans talk to computers through a language.
What are the logical operators?
and, or, and not.
What is an integer
A whole number
What are variables used for?
Used to store something for use later on.
What is input?
What is python?
A software language similar to the English language.
What is the logical operator "and"?
Combines two statements that are both true.
What data type is 1.5?
float
What is the variable in the following code?
yourName = "Ms.Smallwood"print(yourName)
youName
What is output?
What comes out of something.
What is a computer?
A device that is used for working with information (like number, words, pictures, movies, or sounds) with a short display of information.
What is the "not" logical operators?
Reverse the result, return false if the result is true.
What is a bool data type?
true or false
What is the variable in the code below?
num = int(input("How old are you?"))
print(num+15)
num
What is the output in python?
console
What does a programmer do?
List the comparisons
== Equals
!= Does not equal
>= greater than or equal to
> greater than
<= less than or equal to
< less than
String or str
What is a the variable in the code below?
Jar1 = 5
Jar2 = 10
print(jar2)
Jar1 and Jar2
What is the python input function?
List the arithmetic operators in python.
Addition +
Subtraction -
Multiplication *
Float division /
Integer division //
Power **
Ms. Smallwood picked one of the animals in the picture. Have your team ask the and, or and not questions to determine what the animal is.
Reindeer
What are data types?
A set of possible values that can be used in a program.
What are the variable conventions?
1. Never start with a number
2. Use meaningful names
3. Variable names are case-sensitive
4. Variable names should not be the same as python keywords.
How do you use input with an integer and float? Write a coding example.
variable = int(input("")))
variable - float(input(""))