关于

二十岁之前混迹校园,浑浑噩噩
二十岁之后大学准备毕业,迷迷茫茫
毕业几年,混迹职场
慢慢走上运维之路
从此,Linux成了吃饭的家伙
人生苦短

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import random

life,dead,succeed,fail = 1,0,1,0
while life != dead:
print('I got a new plan!')
plan = random.choice((succeed,fail,'?'))
if plan == '?':
print('Hold on!')
else:
print('What a beautiful day!') if plan else print('Come on!')
life, dead = random.sample(('to be or not to be,that is a question'),2)
print('No regrets.')

#生命是一段漫长的旅程
#想了,就去做
#输了,从头再来
#摔了,爬起来继续
#赢了,还要再往前走
#死了,没留下任何遗憾
#Edited by @er3456qi
0%