摘要:
[fineBI帮助文档](https://help.fanruan.com/finebi/) 阅读全文
posted @ 2023-07-24 17:44
soccerchen
阅读(6)
评论(0)
推荐(0)
摘要:
[Python官方文档](https://docs.python.org/zh-cn/3/tutorial/index.html) [Numpy使用手册](https://numpy.org/doc/stable/user/) [matplotlib使用手册](https://matplotlib. 阅读全文
posted @ 2023-07-24 13:34
soccerchen
阅读(16)
评论(0)
推荐(0)
摘要:
[架构师 - 通用方法(2)](https://mp.weixin.qq.com/s/muTCQdth8uKoysCArUsXjA) 阅读全文
posted @ 2023-07-24 13:32
soccerchen
阅读(8)
评论(0)
推荐(0)
摘要:
这里讲两个函数的用法:__doc__和__annotations__ 假设我写了如下的函数: def f(ham: str, eggs: str = 'eggs') -> str: '1254' '5234' print("Annotations:", f.__annotations__) prin 阅读全文
posted @ 2023-07-23 15:54
soccerchen
阅读(18)
评论(0)
推荐(0)
摘要:
#官方给出的格式要求如下,其实不需要有两个或两个以上的参数,一个a也是可以的lambda a, b: a+b#官方给出的例子 >>> def make_incrementor(n): ... return lambda x: x + n ... >>> f = make_incrementor(42 阅读全文
posted @ 2023-07-23 15:44
soccerchen
阅读(26)
评论(0)
推荐(0)
摘要:
一、基本参数使用方法 如下的代码大家应该都见过: def func1(n): if n <= 0: print('请输入一个整数!') func1(int(input())) elif n <= 2: return 1 else: return func1(n-1)+func1(n-2) 这个是是一 阅读全文
posted @ 2023-07-22 16:59
soccerchen
阅读(169)
评论(0)
推荐(0)
浙公网安备 33010602011771号