Computer Science, asked by ahanna123, 4 months ago

print multiples of 7 in descending order in python​

Answers

Answered by Yashika12356
1

Answer:

answer : 7, 14, 21, 28, 35, 42, 49, 56, 63, 70,

Explanation:

please mark me branliest

Answered by atrs7391
1

Your Program:

n = int(input("Enter the number of multiples you want of 7: "))

print("The multiples of 7 are: ")

for x in range(10, 0, -1):

   print(x*7)

Output of the program:

Enter the number of multiples you want of 7: 10

The multiples of 7 are:  

70

63

56

49

42

35

28

21

14

7

Similar questions