Skip to content

Instantly share code, notes, and snippets.

@otwm
Created December 23, 2015 02:11
Show Gist options
  • Save otwm/f3580ce8208c04ec1514 to your computer and use it in GitHub Desktop.
Save otwm/f3580ce8208c04ec1514 to your computer and use it in GitHub Desktop.
generate sequence
def generateSequence(end=100,head='MG',fill=17):
for index in range(1,end):
print(head + (index + '').zfill(fill)):
@otwm
Copy link
Author

otwm commented Dec 23, 2015

시퀀스 생성

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment