原文链接:https://www.wolfram.com/language/fast-introduction-for-programmers/en/built-in-functions/
正文
The Wolfram Language has about 5000 built-in functions. All have names in which each word starts with a capital letter:
在Wolfram语言中包含有大约5000个内置的函数。他们所有的名字中每个单词都是大写字母。
python中的内置函数被包含在不同的库中
Arguments to functions are always separated by commas.
函数参数通常被逗号分割
在wolfram中函数参数使用方括号[...]而不是圆括号(...),圆括号用来分组,改变表达式优先级的时候。但是在python中函数使用圆括号,如下图使用的命令,help(sum),sum([1,2,3])
Hover over any built-in function name to see summary or documentation and examples.
悬停在一些内置函数中可以查看到总结,文档和例子
一些单词及句子
comma:逗号
hover:悬停
- 微信公众号
- 关注微信公众号
- QQ群
- 我们的QQ群号
2018年1月16日 下午8:23 1F
悬停的意思就是把鼠标的光标停留在函数名上,此时会产生一个下拉箭头,点开箭头旁的‘’!‘’可查看函数的具体用法说明。
2018年1月17日 下午5:19 B1
@ 低调-为哥 是这个意思。