三级菜单 ,求1 - 2 + 3 - 4 + 5...99的所有数的和
1.猜年龄游戏:
要求:
允许用户最多尝试3次 每尝试3次后,如果还没猜对,就问用户是否还想继续玩,如果回答Y或y, 就继续让其猜3次,以此往复,如果回答N或n,就退出程序 如果猜对了,有三次选择奖励的机会,不要奖励可以随时退出,并打印奖品清单给用户看;
2.三级菜单:
-
打印省、市、县三级菜单
-
可返回上一级
-
可随时退出程序
menu = { '北京': { '海淀': { '五道口': { 'soho': {}, '网易': {}, 'google': {} }, '中关村': { '爱奇艺': {}, '汽车之家': {}, 'youku': {}, }, '上地': { '百度': {}, }, }, '昌平': { '沙河': { '老男孩': {}, '北航': {}, }, '天通苑': {}, '回龙观': {}, }, '朝阳': {}, '东城': {}, }, '上海': { '闵行': { "人民广场": { '炸鸡店': {} } }, '闸北': { '火车战': { '携程': {} } }, '浦东': {}, }, '山东': {}, } layers = [menu, ] while True: if len(layers) == 0: break current_layers = layers[-1] # print(current_layers,type(current_layers),'=================') for key in current_layers: print(key) choice = input('请选择(b返回上一层,q直接退出)>>>:').strip() if choice == 'b': layers.pop(-1) # print(layers,'+++++++++++++++++') continue if choice == 'q': break if choice not in current_layers: continue else: layers.append(current_layers[choice]) # for i in layers: # print(i,'@@@@@@@@@@@@@@@@@@@@') # print(layers,'-------------------------',len(layers)) # print(current_layers[choice],type(current_layers[choice]),'**********************')
3.求1 - 2 + 3 - 4 + 5...99的所有数的和
# 求1 - 2 + 3 - 4 + 5...99的所有数的和 # 方法1 count = 0 get_sum = 0 while True: if count == 100: break get_sum += count * ((-1) ** (count + 1)) count += 1 print(get_sum) # 方法2 count = 0 get_sum = 0 get_sum1 = 0 get_sum2 = 0 while True: if count == 100: break if count % 2 == 0: get_sum1 -= count else: get_sum2 += count get_sum = get_sum1 + get_sum2 count += 1 print(get_sum)