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.
~301 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
python x 2
1 Posted Topic
def odd_mount(count): list1=range(1,count+1,2) list2=range(1,count,2) list2.reverse() list3=list1+list2 return list3
The End.