Computer Science, asked by bhakatbinita44, 10 months ago

Write output of the following code:

Lst =[num for num in range(1, 50) if num %7 == 0]

print(Lst)

Answers

Answered by neerajakulkarni23
2

Answer:

Output is

[7, 14, 21, 28, 35, 42, 49]

Similar questions