python 3rd 函数(1)

实例1

def hello():
    print("hello")
    print("今天下雨吗")
    print("饭吃了吗")

hello() 输出:
#hello #今天下雨吗 #饭吃了吗

实例2

def hello(name):
    print(hello,+ name)

hello(aoteman)
#输出:
#hello,aoteman

实例3

def sorce_pass(name,sorce):
    if sorce >=60:
        print(f{name}的成绩通过了)
    else:
        print(f{name}的成绩未通过)
        
sorce_pass("beili",56)
sorce_pass("beili",66)
sorce_pass(sorce=100,name="beili")
#输出: #beili的成绩未通过 #beili的成绩通过了
#beili的成绩通过了

python 3rd 函数(1)

上一篇:springboot war部署


下一篇:[JavaWeb] HTML