Skip to content

Instantly share code, notes, and snippets.

View thelatefuture's full-sized avatar
🏠
Working from home

HUI thelatefuture

🏠
Working from home
View GitHub Profile
@thelatefuture
thelatefuture / Pig Latin translator
Last active September 4, 2015 03:20
Pig Latin translator
#一个调换字母顺序的游戏
pyg = 'ay'
original = raw_input('Enter a word:')
if len(original) > 0 and original.isalpha():
word = original.lower()
first = word[0]
new_word = word + first + pyg
@thelatefuture
thelatefuture / generate random numbers
Last active September 4, 2015 03:21
Generate random numbers for who do the work.
#产生随机数 好分配作业
a = "wangshuaifei"
b = "wangyuanlu"
c = "liqiaozhi"
d = "zhangbinbin"
e = "lichunxiao"
f = "linhongmei"
g = "wudexiang"
h = "liaoruping"