Python
2021-05-30 02:06
标签:成绩 xxx input 取整 int utf-8 一个 输入 none 内置函数: bool()计算对象的bool值 type()查看数据类型 str()转字符 int()转int float()转浮点 a is b 比较ID是否相等 not b 等于 !b //取整运算 ** 幂运算 “”“xxx""" 块注释,也可以作为字符串使用 None 空列表:[]、list() 空元祖:()、tuple() 空字典:{}、dict() 空集合:set() 逻辑分支: Python 标签:成绩 xxx input 取整 int utf-8 一个 输入 none 原文地址:https://www.cnblogs.com/dndt/p/14758989.html# coding:utf-8
num=int(input("请输入一个整数"))
if num%2==0:
print(str(num)+"是偶数")
else:
print(num,"是奇数")
1 score = int(input("请输入一个成绩"))
2
3 if 90 :
4 print("A级")
5 elif 80 :
6 print("B级")
7 else:
8 print("C级")