摘要:
ctrl+tab可以进行跳转 https://blog.csdn.net/luckygirl0809/article/details/79929491 阅读全文
摘要:
https://blog.csdn.net/w113691/article/details/80385534 阅读全文
摘要:
https://blog.csdn.net/koukehui0292/article/details/82993958 Python的 深度拷贝: import copy d=copy.deepcopy(alist) 阅读全文
摘要:
test =[ [1, 2, 3], [4, 5, 6], [7, 8, 9]] #这个就可以看做是二维数组了,直接创建print(test)print(test[:][1]) #这里会输出【4,5,6】 print(test[1][:]) #这里会输出【4,5,6】 print(test[1]) 阅读全文
摘要:
test =[ [1, 2, 3], [4, 5, 6], [7, 8, 9]] #这个就可以看做是二维数组了,直接创建print(test)print(test[:][1]) #这里会输出【4,5,6】 print(test[1][:]) #这里会输出【4,5,6】 print(test[1]) 阅读全文
摘要:
https://www.cnblogs.com/btchenguang/archive/2012/01/20/2328320.html 阅读全文