博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Learn Python 010: Dictionary - Cinema Simulator
阅读量:6288 次
发布时间:2019-06-22

本文共 681 字,大约阅读时间需要 2 分钟。

films = {    'Finding Dory': [3, 5],    'Bourne': [18, 7],    'Tarzen': [15, 9],    'Ghost Busters': [12, 5]}while True:    choice = input('Please enter the selected film: ').title().strip()    if choice in films:        age = int(input('Please enter your age: ').strip())        if age >= films[choice][0]:            if films[choice][1] > 0:                print('Enjoy.')                films[choice][1] = films[choice][1] - 1            else:                print('Sorry, we are sold out.')        else:            print("Sorry, you are too young to watch the film.")    else:        print('Sorry, we do not have this film.')

 

转载于:https://www.cnblogs.com/mxyzptlk/p/7183388.html

你可能感兴趣的文章
Python List pop()方法
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
tkinter 01 Label & Button 标签和按钮
查看>>
LSTM简单入门
查看>>
SQL Server Always On模式导致SharePoint 配置向导报错
查看>>
NAT
查看>>
2.1-指定ip和指定文件同步脚本
查看>>
2.7-dockerfile格式
查看>>
Java迭代模式(Iterator模式)
查看>>
java经典面试题!
查看>>
nginx启动脚本
查看>>
saltstack 文件下发与拉取
查看>>
HTTP协议相关内容及web通信原理的理解
查看>>
cocos2dx基础篇(10)——开关按钮CCControlSwitch
查看>>
配置lamp自动安装脚本(未完待更新)
查看>>
经典linq模板语句
查看>>
加密之---SHA
查看>>
Kubernetes 存储卷管理 PV&PVC(十)
查看>>
信息系统工程师笔记第二十一章
查看>>