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
2 Posted Topics
Re: 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 | |
Re: 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 . |
The End.