
学习日志
悠闲懒人
这个作者很懒,什么都没留下…
展开
-
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 · 156 阅读 · 1 评论 -
Python学习日志(9)-笨办法学python25课
python版本:3.6.1练习25.更更多练习原创 2021-06-12 11:43:08 · 198 阅读 · 2 评论 -
Python学习日志(8)-笨办法学python24课
python版本:3.6.1练习24.更多练习原创 2021-06-10 21:30:40 · 150 阅读 · 0 评论 -
Python学习日志(7)-笨办法学python-番外-input(1)
python版本:3.6.1input使用的注意事项:原创 2021-06-03 21:43:43 · 224 阅读 · 0 评论 -
Python学习日志(6)-笨办法学python18课
python版本:3.6.1练习18.名称,变量,代码,函数本课1 # this one is like your scripts with argv2 def print_two(*args):3 arg1, arg2 = args4 print(f"arg1: {arg1}, arg2: {arg2}")56 # ok, that *args is actually pointless, we can just do this7 def原创 2021-06-02 21:58:30 · 131 阅读 · 0 评论 -
Python学习日志(5)-笨办法学python17课-2(疑问待解决)
python版本:3.6.1练习17.更多文件原创 2021-06-01 21:48:47 · 88 阅读 · 0 评论 -
Python学习日志(4)-笨办法学python17课-1
python版本:3.6.1练习16.更多文件、原创 2021-06-01 21:23:21 · 98 阅读 · 0 评论 -
Python学习日志(3)-笨办法学python16课-3(疑问待解决)
python版本:3.6.1练习16.读写文件原创 2021-05-31 21:44:41 · 113 阅读 · 0 评论 -
Python学习日志(2)-笨办法学python16课-2
python版本:3.6.1练习16.读写文件原创 2021-05-31 21:30:06 · 105 阅读 · 0 评论 -
Python学习日志(1)-笨办法学python16课-1
python版本:3.6.1原创 2021-05-31 20:53:18 · 90 阅读 · 0 评论