函数:动手试一试

Posted xusuns

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数:动手试一试相关的知识,希望对你有一定的参考价值。

1.编写一个函数,打印一个句子,调用这个含函数

def test():
    print(Hello World)
test()

2.设置函数和形参,打印消息,调用函数,输入实参

def python(job):
    print(Python 适合就业的方向我比较喜欢+job)
python(机器学习(Scikit-Learn)、神经网络(TensorFlow)和爬虫(Scrapy ))

3.编写一个函数,接收尺码和字样,打印

def shirt(size,word):
    print(This shirt is:+size+\nThe word is +word)
shirt(L,Hello World)

4.默认参数为‘I love python’的大号,打印一个默认的,在打印一个其他字样尺码无所谓的

def shirt(size=大号,word=I love python.):
    print(This shirt is:+size+\nThe word is +word)
shirt()
shirt(word=I am learning python)

5.编写一个函数,它接受一个城市的名字和该城市隶属的国家。打印一个简单的句子,存储国家的形参为默认值。为三座不同的城市调用这个函数,其中一个不属于这个国家

def city(name,country=China):
    print(name.title()+ is in +country+.)

city(Beijing)
city(shanghai)
city(name=Los Angeles,country=USA)

 

以上是关于函数:动手试一试的主要内容,如果未能解决你的问题,请参考以下文章

列表:动手试一试

《Python从入门到实践》第八章动手试一试

《Python从入门到实践》第五章动手试一试

《Python从入门到实践》第四章动手试一试

Python自学:第二章 动手试一试

Python 4.3 创建数值列表(动手试一试)