当前位置: 首页 > article >正文

python学习笔记—4—数据类型与数据类型转换

1. python中type(),查看数据类型

print(type(666))
print(type(6.66))
print(type("我爱你中国"))

type_int = type(666)
type_float = type(6.66)
type_string = type("我爱你中国")
print(type_int)
print(type_float)
print(type_string)

score = 100
height = 1.80
name = "doinb"
int_type = type(score)
float_type = type(height)
string_type = type(name)
print(int_type)
print(float_type)
print(string_type)

2. 变量无类型,变量存储的数据有类型

3. 整数、浮点数、字符串相互转换 int(x) float(x) str(x)

# 整数、浮点数、字符串相互转换

# 整数转字符串
int_to_str = str(666)
print(type(int_to_str))
# 浮点数转字符串
float_to_str = str(6.66)
print(type(float_to_str))
# 字符串转整数
str_to_int = int("666")
print(type(str_to_int))
# 字符串转浮点数
str_to_float = float("6.66")
print(type(str_to_float))
# 整数转浮点数
int_to_float = float(666)
print(type(int_to_float), "int_to_float =", int_to_float)
# 浮点数转整数
float_to_int = int(6.66)
print(type(float_to_int), "float_to_int =", float_to_int)

注意:浮点数转整数会发生精度丢失


http://www.kler.cn/a/429666.html

相关文章:

  • vue3 uniapp封装一个瀑布流组件
  • ISP各模块功能介绍
  • 使用VSCode搭建Ruby on Rails集成开发环境
  • 青少年编程与数学 02-006 前端开发框架VUE 22课题、状态管理
  • STM32入门教程-示例程序(按键控制LED光敏传感器控制蜂鸣器)
  • 学英语学Elasticsearch:04 Elastic integrations 工具箱实现对第三方数据源的采集、存储、可视化,开箱即用
  • Linux上的C语言编程实践
  • JVM(Java虚拟机)类加载子系统是Java运行时环境的重要组成部分
  • 【opencv入门教程】14. 矩阵乘除运算
  • 企业防盗版:SPN安全上网解决方案,您的智能防护盾
  • 基于Hadoop大数据音乐推荐系统的设计与实现
  • 数据结构之初始二叉树(1)
  • Vue中key值的作用?
  • 获取缓存大小与清除 Web 缓存 - 鸿蒙 HarmonyOS Next
  • 《深入浅出HTTPS》读书笔记(17):公开密钥算法
  • 【C++算法】34.位运算_丢失的数字
  • 三维测量与建模笔记 - 6.1 双目立体视觉系统
  • 监控组态软件的构成与功能
  • Windows11设置windows暂停更新100年
  • 大文件分块上传后端服务器
  • C++实现一个经典计算器(逆波兰算法)附源码
  • Vue的生命周期方法有哪些?一般在哪一步发送请求
  • JavaWeb:HTMLCSS
  • 手机租赁平台开发的机会与挑战分析
  • win11 恢复任务栏copilot图标, 亲测有效
  • 数据分析Python转置文档代码