美文网首页Python
Python中的基本数据类型和运算

Python中的基本数据类型和运算

作者: 逆风g | 来源:发表于2018-08-04 15:22 被阅读11次

本篇文章主要对Python中的基本数据类型做一个直观的演示,并给出常见的运算符操作例子。

基本数据类型

Python中最基本的数据类型包括整型、浮点数、布尔值和字符串:

# 整型
>>> a = 1
>>> type(a)
<type 'int'>
# 浮点数
>>> b = 1.0
>>> type(b)
<type 'float'>
# 布尔值
>>> c = True
>>> type(c)
<type 'bool'>
# 字符串
>>> d = 'hello'
>>> type(d)
<type 'str'>

变量赋值

变量的赋值可以像前面一样单个赋值,也可以为多个变量赋同一个值:

# 注意变量a、b、c都指向1分配的内存空间,相当于对1建立了三个引用
>>> a = b = c = 1
# 三个变量指向的地址都是同一个地址
>>> id(a)
140354117457272
>>> id(b)
140354117457272
>>> id(c)
140354117457272
>>> 

也可以为多个变量赋多个值:

>>> a, b, c = 1, 2.0, 'hello'
# 打印结果
>>> print a
1
>>> print b
2.0
>>> print c
hello
# 三个变量的地址不一样
>>> id(a)
140354117457272
>>> id(b)
140354117465824
>>> id(c)
4394089184

变量类型变换

这里主要针对整数浮点数布尔类型字符串之间的变换:

#!/usr/bin/python
# -*- coding:utf-8 -*-
a = 1       # 整数
b = 2.0     # 浮点数
c = '3.0'   # 字符串
d = True    # 布尔值

print '强转成整数:'
print int(a)
print int(b)
#print int(c)    # 浮点型的字符串不能强转成整数
print int(d)

print '强转成浮点数:'
print float(a)
print float(b)
print float(c)
print float(d)

print '强转成字符串:'
print str(a)
print str(b)
print str(c)
print str(d)

打印结果为:

强转成整数:
1
2
1
强转成浮点数:
1.0
2.0
3.0
1.0
强转成字符串:
1
2.0
3.0
True

基本运算符

这里主要列举出了加法+减法-乘法*除法/取整/取余%指数**+=-=共9种常见操作:

#!/usr/bin/python
# -*- coding:utf-8 -*-
a = 2
b = 2.0
c = 3
# 加法+
print 'a+b=%.2f'%(a+b)
# 减法-
print 'a-b=%.2f'%(a-b)
# 乘法*
print 'a*b=%.2f'%(a*b)
# 除法/
print 'c/b=%.2f'%(c/b)
# 取整/
print 'c/a=%d'%(c/a)
# 取余%
print 'c%%a=%d'%(c%a)   # 格式化操作符中,'%%'输出一个单一的'%'
# 指数**
print 'c**a=%d'%(c**a)
# +=                    # python 中没有自增操作++用+=1代替
c += 1
print c
# -=                    # python 中没有自增操作--用-=1代替
a -= 2
print a
# 字符串拼接+
d = 'hello '
f = d + 'world'
print f
# 字符串拼接+=
d += 'world'
print d

打印结果为:

a+b=4.00
a-b=0.00
a*b=4.00
c/b=1.50
c/a=1
c%a=1
c**a=9
4
0
hello world
hello world

逻辑操作

这里主要列举出了与操作或操作非操作共3种常见操作:

#!/usr/bin/python
# -*- coding:utf-8 -*-
a = True
b = False
# 与操作
print 'a and b:%r' % (a and b)
# 或操作
print 'a or b:%r' % (a or b)
# 非操作
print '!a:%r' % (not a)

打印结果为:

a and b:False
a or b:True
!a:False

相关文章

  • [Python学习路线]--Python基础no.02

    回顾第一天的内容,主要有Python在电脑上环境的安装和搭建,打印语句以及Python中的基本数据类型和基本运算符...

  • python:变量

    编程的三个基本要素: 数据类型 变量 运算符 (1)数据类型 python基本数据类型...

  • python的进修之路

    python基础篇(一)【变量,赋值,输入,输出和导入,运算符,数据类型,文件基本操作】 python基础篇(二)...

  • Python基础入门:从变量到异常处理(1天)--阿里云天池

    变量、运算符与数据类型和位运算 2 变量、运算符与数据类型 2.1注释 1.在python中,#表示注释,作用于整...

  • 数学运算

    Python 提供的基本数据类型 int、float 可以做整数和浮点的四则运算以及乘方等运算。 但是,四则运算不...

  • 41-python中数学运算

    Python 提供的基本数据类型int、float可以做整数和浮点的四则运算以及乘方等运算。 但是,四则运算不局限...

  • Python中的运算符和条件循环语句

    原文博客地址: Python中的运算符和条件循环语句 上文Python数据类型详解01中主要介绍了Python中的...

  • Python中的基本数据类型和运算

    本篇文章主要对Python中的基本数据类型做一个直观的演示,并给出常见的运算符操作例子。 基本数据类型 Pytho...

  • 1.py数据类型

    Python基本数据类型 2.数值类型 数值类型主要是用来是做运算的,所以还会有如下的运算符 基本数值类型中前三种...

  • 小白的Python之路(3)--运算符

    @(Python3) 内容:运算符 1. 位运算符 Python中的运算符和Java中基本差不多,这里主要介绍一下...

网友评论

    本文标题:Python中的基本数据类型和运算

    本文链接:https://www.haomeiwen.com/subject/prkmvftx.html