当前位置:首页 > Software > Python > 正文内容

列表作为函数参数

Doraemon5年前 (2020-02-22)Python4814

列表作为函数参数,函数中可以修改原列表

def multiply(values,factor):
    for i in range(len(values)):
       values[i]*=factor
       
 aList=[1,2,3,4,5]
 multiply(aList,2)
 print(aList)

>>>[2,4,6,810

Python中int,float,str均为不可变对象,list为可变对象。

扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:https://world.myfpga.cn/index.php/post/135.html

分享给朋友:

“列表作为函数参数” 的相关文章

Python关于turtle的函数名

Python关于turtle的函数名

turtle.forward(distance)                   向当前画笔方向移动distance像素长度turtle.backward(distance)              向当前画笔相反方向移动distance像素长度turtle.right(degree)    ...

anaconda打不开的解决方法

anaconda打不开的解决方法

报错内容Navigator Error An unexpected error occurred on Navigator start-up Report Please report this ...

Python自动清理错误图片,深度学习训练数据集准备

Python自动清理错误图片,深度学习训练数据集准备

使用python运行from PIL import Image from pathlib import Path import os   path = r'.'  ...

(原创)使用Python提取ISE工程的RTL代码

(原创)使用Python提取ISE工程的RTL代码

在工程文件夹下运行Python程序即可 #Author       : / #Description  : 从ISE的项目文件夹中提取rtl文件,用于LEDA调试 #Time ...

(原创)使用Python提取XISE工程的RTL代码

(原创)使用Python提取XISE工程的RTL代码

在工程文件夹下运行Python程序即可#Author       : / #Description  : 从Vivado的项目文件夹中提取rtl文件,用于LEDA调试 #Time&nbs...