1. 是的。
2. 加在sorted()的括号里面,例如sorted(list1, reverse=True)
3. 可参考这个网址 https://www.cnblogs.com/weststar/p/11321808.html
4. 方法一: 在\n前面加上\, 例如"\\n" 方法二: 在"\n"前加r, 例如:r"\n"
5. 可以。比如l1 = ["te\nst", "hel\nlo"], print(l1[0])会显示为te(这有个换行)st
6. python自带没有,numpy里面有(numpy.mean(a)函数)。