146k views
0 votes
2.2 Lesson Practice python quiz

1 Answer

5 votes

Answer:x = int(input("Enter an integer: "))

print(x + 1)

print(x + 2)

print(x + 3)

2.2 question 2

a = float(input("Enter number here: "))

b = float(input("Enter number here: "))

c = float(input("Enter number here: "))

print(a + b + c)

Step-by-step explanation:

User EdgarZeng
by
5.8k points