02 2021 档案

摘要:在这篇文章中,主要是对Python做一个较为细致的回顾。 Type Python中比较常用的几种数据类型包括string,integer以及float。一般通过type()去获得一个变量的数据类型 x = 2.14 type(x) # float x = 2 type(x) # int x = '2 阅读全文
posted @ 2021-02-28 21:47 Tingwei_chen 阅读(82) 评论(0) 推荐(0) 编辑