原文链接: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个内置的函数。他们所有的名字中每个单词都是大写字母。
![Mathematica入门[3]–Built-in Functions(内置函数)](https://img.mathpretty.com/snipaste_20170923_211634.png)
python中的内置函数被包含在不同的库中
Arguments to functions are always separated by commas.
函数参数通常被逗号分割
在wolfram中函数参数使用方括号[...]而不是圆括号(...),圆括号用来分组,改变表达式优先级的时候。但是在python中函数使用圆括号,如下图使用的命令,help(sum),sum([1,2,3])
![Mathematica入门[3]–Built-in Functions(内置函数)](https://img.mathpretty.com/snipaste_20170923_221816.png)
Hover over any built-in function name to see summary or documentation and examples.
悬停在一些内置函数中可以查看到总结,文档和例子
一些单词及句子
comma:逗号
hover:悬停
- 微信公众号
- 关注微信公众号
-
- QQ群
- 我们的QQ群号
-


![Mathematica入门[13]–Associations(关联)](https://img.mathpretty.com/20210911_162114_futklns.jpg)
![Mathematica入门[11]–Applying Functions(函数应用)](https://img.mathpretty.com/20210911_162025_0gwx5df.jpg)
![Mathematica入门[10]–Pure Functions(纯函数)](https://img.mathpretty.com/20210911_162120_jq7wn38.jpg)
![Mathematica入门[9]–Function Definitions(函数定义)](https://img.mathpretty.com/20210911_162050_qf000sb.jpg)
![Mathematica入门[7]--Assignments(赋值)](https://img.mathpretty.com/20210911_162056_tt49p1t.jpg)
![Mathematica入门[6]--Iterators(迭代器)](https://img.mathpretty.com/20210911_162059_8b2hciq.jpg)

2018年1月16日 下午8:23 1F
悬停的意思就是把鼠标的光标停留在函数名上,此时会产生一个下拉箭头,点开箭头旁的‘’!‘’可查看函数的具体用法说明。
2018年1月17日 下午5:19 B1
@ 低调-为哥 是这个意思。