实例讲解Python中函数的调用与定义
作者:YoferZhang 时间:2022-10-25 02:47:55
调用函数:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# 函数调用
>>> abs(100)
100
>>> abs(-110)
110
>>> abs(12.34)
12.34
>>> abs(1, 2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: abs() takes exactly one argument (2 given)
>>> abs('a')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bad operand type for abs(): 'str'
>>> max(1, 2)
2
>>> max(2, 3, 1, -5)
3
>>> int('123')
123
>>> int(12.34)
12
>>> str(1.23)
'1.23'
>>> str(100)
'100'
>>> bool(1)
True
>>> bool('')
False
>>> a = abs # 变量a指向abs函数,相当于引用
>>> a(-1) # 所以也可以通过a调用abs函数
1
>>> n1 = 255
>>> n2 = 1000
>>> print(hex(n1))
0xff
>>> print(hex(n2))
0x3e8
定义函数:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#函数定义
def myAbs(x):
if x >= 0:
return x
else:
return -x
a = 10
myAbs(a)
def nop(): # 空函数
pass
pass语句什么都不做 。
实际上pass可以用来作为占位符,比如现在还没想好怎么写函数代码,就可以先写一个pass,让代码运行起来。
if age >= 18:
pass
#缺少了pass,代码就会有语法错误
>>> if age >= 18:
...
File "<stdin>", line 2
^
IndentationError: expected an indented block
>>> myAbs(1, 2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: myAbs() takes 1 positional argument but 2 were given
>>> myAbs('A')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 2, in myAbs
TypeError: unorderable types: str() >= int()
>>> abs('A')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bad operand type for abs(): 'str'
def myAbs(x):
if not isinstance(x, (int, float)):
raise TypeError('bad operand type')
if x >= 0:
return x
else:
return -x
>>> myAbs('A')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 3, in myAbs
TypeError: bad operand type
返回两个值?
import math
def move(x, y, step, angle = 0):
nx = x + step * math.cos(angle)
ny = y - step * math.sin(angle)
return nx, ny
>>> x, y = move(100, 100, 60, math.pi / 6)
>>> print(x, y)
151.96152422706632 70.0
其实上面只是一种假象,Python函数返回的仍然是单一值 。
>>> r = move(100, 100, 60, math.pi / 6)
>>> print(r)
(151.96152422706632, 70.0)
实际上返回的是一个tuple!
但是,语法上,返回一个tuple可以省略括号, 而多个变量可以同时接受一个tuple,按位置赋给对应的值。
所以,Python的函数返回多值实际就是返回一个tuple,但是写起来更方便。
函数执行完毕也没有return语句时,自动return None。
练习 :
import math
def quadratic(a, b, c):
x1 = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a)
x2 = (-b - math.sqrt(b * b - 4 * a * c)) / (2 * a)
return x1, x2
x1, x2 = quadratic(2, 5, 1)
print(x1, x2)
>>> import math
>>> def quadratic(a, b, c):
... x1 = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a)
... x2 = (-b - math.sqrt(b * b - 4 * a * c)) / (2 * a)
... return x1, x2
...
>>> x1, x2 = quadratic(2, 5, 1)
>>> print(x1, x2)
-0.21922359359558485 -2.2807764064044154
标签:Python,函数
0
投稿
猜你喜欢
Python简单读写Xls格式文档的方法示例
2021-11-02 13:27:30
django 简单实现登录验证给你
2023-07-25 02:25:46
python如何实现单链表的反转
2023-05-11 12:44:10
javascript 函数调用的对象和方法
2010-07-02 12:25:00
Python定义一个函数的方法
2023-09-18 17:28:09
MySQL如何优化索引
2024-01-25 17:12:15
Python中的rfind()方法使用详解
2022-05-05 21:30:54
javascript开发随笔一 preventDefault的必要
2024-04-26 17:14:05
PHP实现视频文件上传完整实例
2024-06-05 09:46:55
Bootstrap实现渐变顶部固定自适应导航栏
2023-08-23 00:52:40
python自动化测试之Selenium详解
2022-07-16 12:24:44
AJAX打造博客无刷新搜索
2007-08-23 08:48:00
js使用eval解析json(js中使用json)
2024-04-19 10:00:31
python数组过滤实现方法
2021-09-11 20:28:44
如何恢复数据库的账号 登录名/用户名等
2024-01-25 08:08:47
详解python的异常捕获
2023-05-27 11:24:03
python正则分组的应用
2022-05-24 20:50:39
python实现将pvr格式转换成pvr.ccz的方法
2022-09-01 05:54:14
URL编码与SQL注入
2007-09-26 12:41:00
基于Python实现天天酷跑功能
2022-09-30 01:18:33