python-输入输出1
程序员文章站
2022-07-15 08:37:27
...
import datetime
myyear = input("请输入您的出生年份:")
nowyear = datetime.datetime.now().year
age = nowyear-int(myyear)
print("您的年龄为:"+str(age))
if age<18:
print("您现在是未成年人@[email protected]")
if age>=18 and age<=66:
print("您现在是青年-_-")
if age>=66 and age<80:
print("您现在是中年[email protected][email protected]~")
if age>=80:
print("您现在是老年*-_-*")
推荐阅读
-
php如何把1显示成01的格式
-
PHP和Mysqlweb应用开发核心技术 第1部分 Php基础-1 开始了解php_PHP教程
-
Google Map Android API V1中API Key的生成 博客分类: Android androidMapViewapiKeygoogle map
-
PHP NG (PHP 5.7) 性能比PHP5.6 提升近1倍_PHP教程
-
Kettle构建Hadoop ETL实践(八-1):维度表技术
-
Unity ShaderLab 框架全解析1 —— Properties
-
mysql 的 latin1 支持中文
-
Sprinig Boot优雅实现接口幂等性---1
-
python数据结构学习笔记-树(下)-哈夫曼树与哈夫曼编码(1)
-
浙大_数据结构_1:最大子列和