Computer Science, asked by arkasaha988, 1 month ago

Week 3 Programming Assignment
Due on 2021-02
We have seen how loops work in python. Now let's implement and concertize our concepts.
Given a list A of numbers (integers), you have to print those numbers which are not ending with 4.
Input Format
The first line contains numbers separated by a space.
Output Format
Print the resultant array elements separated by a space. (no space after the last element)
Example
Input
235 4 7 12 14 13 24 40 14
Output
2 3 5 12 13 40
Your last recorded submission was on 2021-02-03, 00:28 IST
Select the Language for this assignment Python3 v
1 list1 = (2,3,5,4,7,12,14,13,24,40,14]​

Answers

Answered by Anonymous
0

Answer:

Week 3 Programming Assignment. Due on 2019-08-22, 23:59 IST. Write three Python functions as specified below. Paste the text for all three functions togetherWeek 3 Programming Assignment Due on 2021-02. We have seen how loops work in python. Now let's implement and concertize our concepts ...

Explanation:

Similar questions