慕良 发表于 2020-1-21 17:44:23

python学习:005

本帖最后由 慕良 于 2020-1-21 17:44 编辑

005 闲聊之python的数据类型

一、引入

‘520’+‘1314’
run:‘5201314’

520+1314
run:1834


二、数值类型

1、整型:整数

2、浮点型:小数,1.55

3、e记法:科学计数法,
a=0.00025=2.5e-4
b=150000=1.5e5

4、布尔类型:特殊整型
True=1,False=0


三、类型转换

1、int()--整数
(1)取整
a=5.99
c=int(a)=5
(2)四舍五入
a
c=int(a+0.5)

2、float()--浮点数
a='520'/520
b=float(a)=520.0

3、str--字符串
a=5.99
b=str(a)=‘5.99’
c=str(5e19)=‘5e+19’

4、bool--
bool(True)=True

四、获取关于类型的信息

1、type()
type(5.2)=< class 'str' >

2、isinstance()
a='小甲鱼'
isinstance(a,str)=True

慕良 发表于 2020-1-21 18:11:59

s为字符串

s.isalnum() 所有字符都是数字或字母
s.isalpha() 字母
s.isdigit()数字
s.islower()小写
s.isupper()大写
s.istitle()首字母大写
s.isspace()空白字符

以上,为真返回Ture,否则返回False

慕良 发表于 2020-1-21 18:14:04

课后题:判断给定年份是否为闰年。
(能被4整除但不能被100整除,或者能被400整除都是闰年。)

代码如下:
temp=input('请输入年份:')
if not temp.isdigit():
    i =1
else:
    i = 0
while i == 1:
    temp = input('请输入整数的年份:')
    i = i - 1
year = int(temp)
if year/400 == int(year/400):
    print(temp +'是闰年!')
else:
    if year/4 == int(year/4) and year/100 != int(year/100):
      print(temp +'是闰年!')
    else:
      print(temp +'不是闰年!')
页: [1]
查看完整版本: python学习:005