Python中都有哪些基本数据类型可以使用?
- 内容介绍
- 文章标签
- 相关推荐
本文共计1914个文字,预计阅读时间需要8分钟。
pythondef rewrite_fake_innovation_head(content): words=content.split() result= .join(words[:100]) return result
示例内容content=int main() { return 0; }print(rewrite_fake_innovation_head(content))
int
#======================================基本使用======================================
#1、用途:记录年龄\等级\各种号码
#2、定义方式
age=18
age=int(18)
x=int(‘123‘)只能将纯数字的字符串转换成整型
print(type(x))显示类型 int
print(int(3.7))强转结果为3
#3、常用操作+内置的方法
#======================================该类型总结====================================
#存一个值
#可变or不可变(1、可变:值变,id不变。可变==不可hash 2、不可变:值变,id就变。
本文共计1914个文字,预计阅读时间需要8分钟。
pythondef rewrite_fake_innovation_head(content): words=content.split() result= .join(words[:100]) return result
示例内容content=int main() { return 0; }print(rewrite_fake_innovation_head(content))
int
#======================================基本使用======================================
#1、用途:记录年龄\等级\各种号码
#2、定义方式
age=18
age=int(18)
x=int(‘123‘)只能将纯数字的字符串转换成整型
print(type(x))显示类型 int
print(int(3.7))强转结果为3
#3、常用操作+内置的方法
#======================================该类型总结====================================
#存一个值
#可变or不可变(1、可变:值变,id不变。可变==不可hash 2、不可变:值变,id就变。

