Skip to content

Instantly share code, notes, and snippets.

@jnozsc
Last active June 14, 2018 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnozsc/aea1697da1702a90da44dc9da9574c7a to your computer and use it in GitHub Desktop.
Save jnozsc/aea1697da1702a90da44dc9da9574c7a to your computer and use it in GitHub Desktop.
lunch.py
#!/usr/local/bin/python
# -*- coding: utf-8 -*-
import random
candidate = [
'默认鸡排',
'柠檬鸡串',
'奥尔良烤',
'土耳其烤',
'炸鸡腿',
'爆浆鸡排'
]
def main():
print(random.choice(candidate))
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment