Python入门教程1. 基本运算【四则运算、变量、math模块等】 <font color=red>原创</font>

作者:chenge 时间:2023-12-21 19:44:16 

在熟悉了Python的基本安装与环境配置之后,我们来看看Python的基本运算操作。

1. 基本运算


>>>6 # 这里的‘#'是注释符号,不参与运算
6
>>>666666666666666 #整数类型,原样输出
666666666666666
>>>3.14 #浮点数类型
3.14

>>>id(6) #id()函数用于查看内存地址
1409471616
>>>help(id) #help()函数可用于查看函数文档
Help on built-in function id in module builtins:

id(obj, /)
 Return the identity of an object.

This is guaranteed to be unique among simultaneously existing objects.
 (CPython uses the object's memory address.)

>>> 5+1
6
>>>5.0+1 #这里运算结果会自动转换为浮点型
6.0
>>>10/2
5.0
>>>10/3 #这里由于计算机是将数字转换为二进制进行计算时,浮点数转换偏差造成的
3.3333333333333335
>>>2.5*2
5.0
>>>2.5**2 #符号**用指数计算,例如这里计算2.5的2次方
6.25
>>>5//2 # 符号//可用于计算相除的结果再进行取整
2
>>>5%2 #取余,没啥好说的
1
>>>5.0%2 #浮点数的取余运算,同理
1.0
>>>(5 + 6) * 2 - 2 ** 3 + 5//2 - 5 % 3 #综合计算(表达式计算)
14

2. 变量与变量类型


>>>a=6 #变量定义与赋值
>>>a
6
>>>b = 3*a #变量运算与赋值
>>>b
18
>>>type(a) #type函数用于检测变量类型
<class 'int'>
>>> b = True #布尔类型
<class 'bool'>
>>> c = 3.14 #浮点数类型
>>> type(c)
<class 'float'>
>>> d = 'www.jb51.net'
>>> type(d)
<class 'str'>
>>> e = ['a','b','c'] #列表类型
>>> type(e)
<class 'list'>
>>> f = ('x','y','z') #元组类型
>>> type(f)
<class 'tuple'>
>>> g = {'a':'1','b':'2','c':'3'} #字典类型
>>> type(g)
<class 'dict'>
>>>

3. 专业计算模块:math

sin(x)求x的正弦
cos(x)求x的余弦
asin(x)求x的反正弦
acos(x)求x的反余弦
tan(x)求x的正切
atan(x)求x的余切、反正切
hypot(x,y)求直角三角形的斜边长
fmod(x,y)求x/y的余数
ceil(x)取不小于x的最小整数(向上取整)
floor(x)取不大于x的最大整数(向下取整)
fabs(x)求绝对值
exp(x)求e的x次幂
pow(x,y)求x的y次幂
log10(x)求x以10为底的对数
sqrt(x)求x的平方根
pi圆周率π的值(常量)


>>> abs(-2) #求绝对值(系统函数)
2
>>> pow(2,4) #计算2的4次方(系统函数)
16.0
>>> round(3.4) #round四舍五入运算(系统函数)
3
>>> round(3.5) #round四舍五入运算
4
>>> import math #使用import语句可以引入math模块进行运算
>>> dir(math) #查看库中所有东西
['__doc__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
>>> pi
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
 pi
NameError: name 'pi' is not defined
>>> math.pi
3.141592653589793
>>> from math import *
>>> pi
3.141592653589793
>>>>>> sqrt(9) #sqrt计算开方
3.0
>>> ceil(3.1) #ceil向上取整
4
>>> floor(3.9) #floor向下取整
3
>>> fmod(7,4) # fmod取余数
3.0

简单入门教程~

基本一看就懂~O(∩_∩)O~

未完待续~~欢迎讨论!!

标签:Python入门教程,基本运算,math模块
0
投稿

猜你喜欢

  • Java连接Mysql 8.0.18版本的方法详解

    2024-01-24 10:08:29
  • 将Python的Django框架与认证系统整合的方法

    2022-05-09 20:33:15
  • 关于你不想知道的所有Python3 unicode特性

    2022-03-03 13:06:40
  • 本地机apache配置基于域名的虚拟主机详解

    2023-11-17 07:40:37
  • MySQL日期时间函数知识汇总

    2024-01-17 04:02:56
  • vue.js刷新当前页面的实例讲解

    2023-04-03 07:39:27
  • 在Python的Django框架中实现Hacker News的一些功能

    2023-11-24 19:27:46
  • python 实现打印扫描效果详情

    2022-04-20 18:29:50
  • 详解Django中类视图使用装饰器的方式

    2023-12-20 15:35:57
  • vue axios拦截器常用之重复请求取消

    2023-07-02 17:03:21
  • python实现画桃心表白

    2021-05-14 16:27:00
  • Python学习笔记(二)基础语法

    2022-03-08 19:55:34
  • Python基础中所出现的异常报错总结

    2023-07-14 05:33:47
  • Python常见的几种数据加密方式

    2021-11-18 07:47:04
  • 深入理解python协程

    2021-04-06 09:31:53
  • python实现定时发送qq消息

    2021-08-17 00:10:34
  • 几个好用的Asp自定义函数

    2007-09-26 14:28:00
  • Mysql 数据库访问类

    2024-01-15 00:31:41
  • python列表逆序排列的4种方法

    2022-09-19 18:26:21
  • golang实现跨域访问的方法

    2024-02-15 18:33:31
  • asp之家 网络编程 m.aspxhome.com