学习日志
悠闲懒人
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Haskell趣学指南-学习笔记(1)
函数:①succ:取下一位数(succ8输出9);②min,max:取最小值,最大值(min 9 10输出9;③div:求商(92 `div` 10输出9)4、调用自己编写的函数,地址要写全。3、Haskell中的函数调用,不需要加括号,如:min 9 10,输出9。7、list中,可以是一组数据,也可以是一组字母,但不可以是数据加字母。5、在Haskell中,if语句的else是不可省略的;函数调用拥有最高的优先级,先函数再乘除最后加减;6、首字母大写的函数是不允许的;原创 2023-09-09 10:44:42 · 185 阅读 · 1 评论 -
Python学习日志(9)-笨办法学python25课
python版本:3.6.1 练习25.更更多练习原创 2021-06-12 11:43:08 · 217 阅读 · 2 评论 -
Python学习日志(8)-笨办法学python24课
python版本:3.6.1 练习24.更多练习原创 2021-06-10 21:30:40 · 172 阅读 · 0 评论 -
Python学习日志(7)-笨办法学python-番外-input(1)
python版本:3.6.1 input使用的注意事项:原创 2021-06-03 21:43:43 · 247 阅读 · 0 评论 -
Python学习日志(6)-笨办法学python18课
python版本:3.6.1 练习18.名称,变量,代码,函数 本课 1 # this one is like your scripts with argv 2 def print_two(*args): 3 arg1, arg2 = args 4 print(f"arg1: {arg1}, arg2: {arg2}") 5 6 # ok, that *args is actually pointless, we can just do this 7 def原创 2021-06-02 21:58:30 · 157 阅读 · 0 评论 -
Python学习日志(5)-笨办法学python17课-2(疑问待解决)
python版本:3.6.1 练习17.更多文件原创 2021-06-01 21:48:47 · 109 阅读 · 0 评论 -
Python学习日志(4)-笨办法学python17课-1
python版本:3.6.1 练习16.更多文件 、原创 2021-06-01 21:23:21 · 119 阅读 · 0 评论 -
Python学习日志(3)-笨办法学python16课-3(疑问待解决)
python版本:3.6.1 练习16.读写文件原创 2021-05-31 21:44:41 · 136 阅读 · 0 评论 -
Python学习日志(2)-笨办法学python16课-2
python版本:3.6.1 练习16.读写文件原创 2021-05-31 21:30:06 · 131 阅读 · 0 评论 -
Python学习日志(1)-笨办法学python16课-1
python版本:3.6.1原创 2021-05-31 20:53:18 · 112 阅读 · 0 评论
分享