a =(1,2,3)
a[0]=4
a
// 会报错 TypeError:'tuple'object does not support item assignment
// 元组中的内容不能被修改
1. jupyter 将所有输出都打印出来
from IPython.core.interactiveshell import InteractiveShell#
InteractiveShell.ast_node_interactivity="all"// 使用这两行可以把所有输出都打印出来
from IPython.core.interactiveshell import InteractiveShell#
InteractiveShell.ast_node_interactivity="all"#使用这两行可以把所有输出都打印出来
s ="djfifikif"
s[2:4]
s
// 输出'fi'// 输出'djfifikif'