Python入门教程(七)Python数字类型
作者:轻松学Python 时间:2022-05-29 22:40:00
Python 数字类型
Python 中有三种数字类型:
int
float
complex
为变量赋值时,将创建数值类型的变量:
实例
x = 10 # int
y = 6.3 # float
z = 2j # complex
如需验证 Python 中任何对象的类型,请使用 type() 函数:
实例
print(type(x))
print(type(y))
print(type(z))
运行实例
Int
Int 或整数是完整的数字,正数或负数,没有小数,长度不限。
实例
整数:
x = 10
y = 37216654545182186317
z = -465167846
print(type(x))
print(type(y))
print(type(z))
运行实例
Float
浮动或“浮点数”是包含小数的正数或负数。
实例
浮点:
x = 3.50
y = 2.0
z = -63.78
print(type(x))
print(type(y))
print(type(z))
运行实例
浮点数也可以是带有“e”的科学数字,表示 10 的幂。
实例
浮点:
x = 27e4
y = 15E2
z = -49.8e100
print(type(x))
print(type(y))
print(type(z))
运行实例
复数
复数用 “j” 作为虚部编写:
实例
复数:
x = 2+3j
y = 7j
z = -7j
print(type(x))
print(type(y))
print(type(z))
运行实例
类型转换
您可以使用 int()、float() 和 complex() 方法从一种类型转换为另一种类型:
实例
从一种类型转换为另一种类型:
x = 10 # int
y = 6.3 # float
z = 1j # complex
# 把整数转换为浮点数
a = float(x)
# 把浮点数转换为整数
b = int(y)
# 把整数转换为复数:
c = complex(x)
print(a)
print(b)
print(c)
print(type(a))
print(type(b))
print(type(c))
运行实例
注释:您无法将复数转换为其他数字类型。
随机数
Python 没有 random() 函数来创建随机数,但 Python 有一个名为 random 的内置模块,可用于生成随机数:
实例
导入 random 模块,并显示 1 到 9 之间的随机数:
import randomprint(random.randrange(1,10))
运行实例
来源:https://blog.csdn.net/ooowwq/article/details/128909011
标签:Python,入门,数字,类型
0
投稿
猜你喜欢
mysql 索引合并的使用
2024-01-14 05:53:39
vue3获取当前路由地址
2024-05-09 15:13:36
Python 变量类型及命名规则介绍
2022-09-17 20:21:22
Dreaweaver MX 2004新功能:图片处理
2010-09-02 12:38:00
Python时间操作之pytz模块使用详解
2023-05-10 02:57:17
pytorch模型存储的2种实现方法
2023-10-06 11:37:24
phpmyadmin显示utf8_general_ci中文乱码的问题终级篇
2024-04-30 09:57:56
python中的随机数种子seed()用法说明
2021-11-15 17:16:34
原生js实现五子棋游戏
2024-06-18 03:22:13
python http接口自动化脚本详解
2022-09-01 05:24:30
Go语言中 Channel 详解
2024-01-30 04:39:48
详解MySQL中ALTER命令的使用
2024-01-26 12:27:25
Python 中urls.py:URL dispatcher(路由配置文件)详解
2021-01-19 02:47:15
详解go-admin在线开发平台学习(安装、配置、启动)
2023-08-26 15:27:31
CSS定位属性Position详解
2009-09-16 20:37:00
Django 删除upload_to文件的步骤
2022-03-23 05:47:14
Python的re模块正则表达式操作
2023-08-21 11:47:08
python中的__slots__使用示例
2022-05-09 17:50:56
JS判断元素是否在可视区域技巧详解
2024-04-22 12:56:23
wap开发中如何有效的利用缓存减少消息的传送量
2022-12-16 04:23:17