我正在通过掌握Matplotlib工作,在第二章中他们介绍了以下代码片段:
#! /usr/bin/env python3.4
import matplotlib.pyplot as plt
def main () -> None:
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.savefig('simple-line.png')
if __name__ == '__main__':
main()
这可以在this笔记本,单元格10中看到。我从未见过以这种方式定义的主方法,-> None
的功能是什么?
到目前为止,我唯一的想法是,这可能类似于def main(argv=None)
?
除此之外,Python中的->
是什么?我在this Python运算符列表中找不到它。