python基础学习—函数
!/usr/bin/env python –– coding: utf-8 –– @Time : 2020/4/1 10:07 @Author : 王小白——函数 @File : 10_06_function.py Python内置函数 例:print input len type str int float list range pop append insert keys aplit replace strip remove clear 函数特点总结:可以重复使用 函数语法【def关键字】 函数调用:函数名() 例: def da_lao(): print("wos
用户评论