编程语言
首页 > 编程语言> > python3

python3

作者:互联网

1、三个单引号能实现换行定义字符串:

 

 2、

冒号后面是建议传入的参数类型

箭头后面是建议函数返回的类型

如:

def greeting(name: str) -> str:

return 'Hello ' + name

输入参数 name 为 str 类型;输出结果也为 str 类型

3、list做函数参数时,是公用内存地址的,和直接=一样,改变里面外面也会变(浅拷贝)

4、条件且:and

 

标签:name,后面,函数参数,参数,str,类型,python3
来源: https://www.cnblogs.com/pjishu/p/15844436.html