练习33:
题目:按逗号分隔列表。
程序分析:无。
代码:
L=[1,2,3,4,5]
s1=','.join(str(n) for n in L)
print(s1)
结果:
1,2,3,4,5
题目:练习函数调用。
程序分析:无。
代码:
def hello_word():
print('hello word')
def three_hellos():
for i in range(3):
hello_word()
if __name__=='__main__':
three_hellos()
结果:
hello word
hello word
hello word
少年不被楼层误,余生不羁尽自由。
加油,加油!