Eli Beutler
@DrillingSphere
#1
names = []
value1 = 0
value2= 0
def compare() :
if value1 > value2 :
print("Value1 is greater than Value2.")
elif value2 > value1 :
pr
Python
#this program should have all lists 1-5
names = ["Peter", "Bruce", "Steve", "Tony", "Natasha","Clint", "Wanda", "Hope", "Danny", "Carol"]
numbers = [1
Python
#this program should have all lists 1-5
names = ["Peter", "Bruce", "Steve", "Tony", "Natasha","Clint", "Wanda", "Hope", "Danny", "Carol"]
numbers = [1
Python
names = ["Peter", "Bruce", "Steve", "Tony", "Natasha","Clint", "Wanda", "Hope", "Danny", "Carol"]
numbers = [1, 2, 7, 11, 17, 53, -8, -4, -9, -72, -64
Python
sum = 0
repeat = input("How many numbers would you like to add together?")
repeat = int(repeat)
#used this to make the input a intiger
for i in range(
Python
guesses = 1
color =str("red")
answer = str("nothing")
answer = input("what's my favorite color?")
while answer != color:
print("wrong, try again.")
Python
x = input("pick a number 1 t0 100")
while (int(x)100):
print("that is not a valid number")
x = input("pick a new number")
else:
print("that is a
Python
answer1 = input("True or False, the blue whale is the largest mammal in the sea?")
if answer1 == str("True"):
print("That is correct!")
elif answer1
Python
start = int(input("Enter a small whole number."))
end = int(input("Enter a large whole number"))
#only whole numbers
#https://pynative.com/online-pyth
Python
name = input("what's your name?")
M = int(input(name + " please pick a number"))
N = int(input(name + " pick another number to divide the first by"))
Python
score = 0
name = str
("Rumpelstiltskin")
grade = 82
x = -3
if grade == 82:
score = score+1
#score should now be one
if grade >= 82 and 100 > grade
Python
#Eli Beutler
#December 10th 2020
#Variables and User Input
name = input("please enter your name: ")
print ("Welcome " + name + ".")
#made sure to add
Python
#Eli Beutler
#December 10th 2020
#Comments and Output
print ("\tThis \nis \n\tmy \nfirst \n\treal \nprogram!")
"""Python is a super cool and fun progr
Python