Set 114 Practical Question

⭐ Q15. List से Odd Numbers निकालना

Example Code (Read Only):


lst = [7,2,4,5,6,3]
if x%2 != 0:
print(x, end="")

Python Online Editor