Python编程入门:教你轻松识别中国生肖年份
创始人
2024-12-16 19:24:03
0 次浏览
0 评论
编写一个Python程序,用户从键盘输入一个年份,程序输出此年份的中国生肖。
year_input=int(input("请输入年份:"))ifyear_input>=1000:....SymbolicAnimals=year_input....ifSymbolicAnimals==0:.........print("年{}是:Shen(monkey).format(year_input))....elifSymbolicAnimals==1:.....print("年{}是:酉(鸡)...format(year_input))....elifSymbolicAnimals==2:.........print("{}年份是:徐(狗)".format(year_input))....elifSymbolicAnimals==3:.....print("{}年份是:亥(猪)".format(year_input))....elifSymbolicAnimals==4:.....print(“{}年份是:孩子(Rat)".format(year_input))....elifSymbolicAnimals==5:.....print("{}年份是:丑陋(牛)".format(year_input))....elifSymbolicAnimals==6:.....print("{}年份是:寅(虎)".format(year_input))....elifSymbolicAnimals==7:.....print("{}年份是:毛(兔)".format(year_input))....elifSymbolicAnimals==8:.....print("{}年份是:秦(龙)...format(year_input))...elifSymbolicAnimals==9:.....print("{}年份是:巳(SNAKE)...format(year_input))....elifSymbolicAnimals==10:........print("{}年份是:马)"..format(year_input))....elifSymbolicAnimals==11:.....print("{}年份是:不是(羊)".format(year_input))else:....print("请输入大于4位数字的年份”)刚接触python的小白,各位大神帮我看看哪里有问题,到if那里就报错了?
input输入的内容是字符串类型,我们需要使用int()方法将其转换为整数类型,然后在if语句中与18进行比较。请输入您的年龄:')print('yourageis:',age)ifint(age)>=18:print('adult')else:print('underage')
相关文章
Python安装配置教程:Windows...
2024-12-17 09:57:12华为平板安装Python教程及Windo...
2024-12-16 05:54:43Python sorted()函数详解:...
2024-12-15 16:55:55Python字符串大小写转换方法详解
2024-12-14 18:06:10达内Python课程:学习时间与实训要点...
2024-12-17 13:06:33Python字典值获取:点方法简化嵌套访...
2024-12-18 03:10:56Python爬虫轻松获取当当网图书信息:...
2024-12-14 17:10:36Python中文分词库jieba详解:从...
2024-12-22 02:25:12Python长度计算利器:len()与c...
2024-12-17 21:31:04少儿编程选Python还是C语言:入门与...
2024-12-19 16:31:13最新文章
23
2024-12
23
2024-12
23
2024-12
23
2024-12
23
2024-12
23
2024-12
23
2024-12
23
2024-12
23
2024-12
23
2024-12
热门文章
1
Python编程入门:全面解析Pytho...
python的基本语法基本的Python语法如下:1.变量的定义。在编程语言中,...
2
Python字典操作全解析:添加、修改、...
Pythondict字典基本操作(包括添加、修改、删除键...
3
Python错误处理与异常处理:构建稳定...
2.5错误处理与异常在编程领域,错误处理和异常处理是保证程序稳定性和健壮性的关键...
4
Python数据转换攻略:字符串、列表、...
Python字典、字符串及列表的相互转换Python中数据转换的艺术:从字典和字...
5
Python列表相加与求和技巧解析
重温python基础:列表相加的方法(两个list[]加法)今天,我们来看看Py...
6
Python运行快捷键大揭秘:高效操作,...
python运行按哪个键运行Python时的快捷键包括Ctrl+Shift+F1...
7
Python字符与数字互转攻略:轻松掌握...
python 字符与数字如何转换Python是一种功能强大且结...
8
Python字符串转列表:两种常用方法解...
python怎么将字符串转换为列表Python中将字符串转换为列表的方法有多种,...
9
Python字符串转列表:两种常用方法解...
python怎么将字符串转换为列表在Python中将字符串转换为列表的方法有很多...
10
Python列表转字符串全攻略:掌握四种...
Python列表到字符串–如何在Python中转换列表在Python中,将列表转...