PythonPython基本数据类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PythonPython基本数据类型相关的知识,希望对你有一定的参考价值。

变量

变量是内存中的一块区域

变量的命名:由字母、数字、下划线组成并且开头不能时数字

python中地址变量与c语言刚好相反,一条数据包含多个标签:

>>> a=1
>>> b=1
>>> id(a)
34909288
>>> id(b)
34909288

整型

注:type()可以查看数据类型

>>> num1=123
>>> type(num1)
<type 'int'>

长整型

#强制定义为长整型:num3=999L

>>> num2=9999999999999999999
>>> type(num2)
<type 'long'>


>>> num3=999L
>>> type(num3)
<type 'long'>

浮点型

#1.2e10代表的数值为1.2的10次方;
#12e9代表的数值为12的9次方;

>>> f1=12.0
>>> type(f1)
<type 'float'>
>>> f2=1.2e10
>>> type(f2)
<type 'float'>

复数类型

#python对复数提供内嵌支持,eg: 3.14j, 8.32e-36j

>>> c=3.14j
>>> type(c)
<type 'complex'>

运算符和表达式

算术运算符:+,-,*,**, /, %, //








以上是关于PythonPython基本数据类型的主要内容,如果未能解决你的问题,请参考以下文章

PythonPython基础

pythonpython值传递问题和内存管理机制

Pythonpython动态类型

学习 Python

Python之路

pythonpython中isinstance判断变量类型用法