莫烦 Python 基础 函数

发布时间:2024-11-25 00:36

数字数据分析基础:Excel或Python基础教学 #生活技巧# #工作学习技巧# #数字技能训练#

最新推荐文章于 2023-04-10 16:56:04 发布

为伊消得77 于 2020-03-12 15:26:00 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

我的视频学习笔记
定义函数 def 带参数

def function(a, b): print('this is a function') c = a * b print('the c is :', c) function(1, 6) function(a=2, b=5)123456'

输出:

this is a function the c is : 6 this is a function the c is : 8123

函数默认参数
未被默认赋值的参数要写在默认值的前面,赋值的时候也是一样的
对默认参数重新赋值,要在赋值语句中添加该参数名

def sale_car(price, brand, color='red', is_second_hand=True): print( 'price:', price, 'color:', color, 'brand:', brand, 'is_second_hand:', is_second_hand ) sale_car(1234, 'BMW', color='blue')12345678'

输出:

price: 1234 color: blue brand: BMW is_second_hand: True

全局&局部 global&local

APPLE = 100 # 通常全局变量 所有字母均用大写 全局变量在任何位置都可以取到 a = None def fun(): global a # 如果一定要在函数里定义全局变量a,需要在前面加上global关键字 a = APPLE # 局部变量只能在函数里调用 return a + 100 print('last a = ', a) print(fun()) print('new a = ', a)123456789'

输出:

last a = None 200 new a = 10012

网址:莫烦 Python 基础 函数 https://www.yuejiaxmz.com/news/view/246265

相关内容

人工智能(python)开发 —— python 基础的基础函数
Python函数
python第二次作业(基础)
Python数据分析:统计函数绘制简单图形
零基础 学 python开发 (Genius套餐A) 二十二
python excel数据分析师职业技能
效率工具:数据分析中常见的Excel函数都在这里了
三角函数反三角函数乘 [cos(arcsinx)]^2=1
python函数练习
(Python)组合数据:Python中的列表、元组、集合

随便看看