function to return a list of numbers from 0 to argument
Create a function generateNumbers(num) that takes in a positive number as argument and returns a list of number from 0 to that number inclusive. Note: The function range(5) will return a list of number [0, 1, 2, 3, 4].
def num(num):
for x in range(num):
lis = []
lis.append(x)
y = x + 1
lis.append(y)
return lis
but it return the following;
num(10)
[0, 1]
previous attempts returned some weird results...
anyway, can you please advise me on this, or give me hints so i can advance my knowledge? would be much appreciated.
4
Contributors
5
Replies
4 Hours
Discussion Span
1 Year Ago
Last Updated
6
Views
Question Answered
Related Article:function to convert list to numbers help
is a Python discussion thread by jonjacob_33_0 that has 4 replies, was last updated 1 year ago and has been tagged with the keywords: functions, integers, list, python.
With list comprehension it can look like this.
Just a little thing capitale letters should only be used in class name.
Not in function name or method name.
def gen_numbers(num):
return [i for i in range(num+1)]
With list comprehension it can look like this.
Just a little thing capitale letters should only be used in class name.
Not in function name or method name.
def gen_numbers(num):
return [i for i in range(num+1)]