07 2023 档案

摘要:标题包括内容直接抄的:https://zhuanlan.zhihu.com/p/78181226 最基本的调用顺序说得很清楚 阅读全文
posted @ 2023-07-31 16:49 soccerchen 阅读(34) 评论(0) 推荐(0)
摘要:使用SQL执行引擎建表的表,Owner是ALIYUN$开头 使用Dataworks表管理建表,准确的说是将web端的表结构及描述信息同步至Hive的Owner以RAM$开头 阅读全文
posted @ 2023-07-31 10:53 soccerchen 阅读(23) 评论(0) 推荐(0)
摘要:[XDown:抖音视频提取工具](https://xdown.chuangzuoniu.com/) 阅读全文
posted @ 2023-07-25 13:58 soccerchen 阅读(46) 评论(0) 推荐(0)
摘要:[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)