Computer Science, asked by unknown3652, 6 months ago

8.Write a program in python to accept number and elements of a list and find numbers that are multiple of 5 and 9 in the list.​

Answers

Answered by Anonymous
2

Explanation:

Get a list of numbers as input from the user

  1. Use a input() function to accept the list elements from a user in the format of a string separated by space.
  2. Next, Use a split() function to split a string by space and added those numbers to the list.
  3. Next, iterate a user list using for loop and range() function.

Similar questions