Is no a keyword

numbers = [no for no in l]
in lecture python 03 user input

doubt no resolved whast is this doing

for no in l is used to iterate all the elements in list l and each element is stored in no .
by using [no for no in l] we are creating a list containing all the elements in l iterated one by one using for loop.
So in the end list numbers will be a list containing all the elements of the list l.

Hey Lakshya,
I hope your doubt has been cleared?