Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~1K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for pwolf

def generateNumber(start, end, step): if step > 0: return [i for i in range(start, end+1, step)] else: return [i for i in range(start, end, step)] this should do the job, its all about the step being negative / positive

Member Avatar for Reverend Jim
1
1K
Member Avatar for Transcendent

If I may I would suggest Zed's Shaw tutorial, nice and quite complete - http://learnpythonthehardway.org/book/ on udemy he has video tutorials and he is promptly answering all the questions .

Member Avatar for vkaravir
0
224

The End.