Python 筆試 面試題

weixin_33907511發表於2018-03-14

Python 語法細節

1. is 和 == 的區別

is 是對比兩個物件是不是同一個地址,== 對比兩個物件的值是否相等。

另外,Python 為了實現對記憶體的有效利用,對小整數[-5, 256]的整數進行快取,不在此範圍內的則不進行快取。另外對 False、True 和 None 也進行了快取,因為本質不過是 0/1 而已,在小整數的範圍內。

a = 256
b = 256
a is b //True

Python 物件導向

1. Python 裡萬物都是物件

每個物件都有id / type / value 三個屬性。

2. Python 的反射

http://www.cnblogs.com/huxi/archive/2011/01/02/1924317.html

切面程式設計

裝飾器,http://www.cnblogs.com/huxi/archive/2011/03/01/1967600.html

多執行緒

Python執行緒指南

面試題

  1. 無答案
    http://blog.csdn.net/gzlaiyonghao/article/details/6625576
    https://segmentfault.com/q/1010000000256141
  2. 有答案
    量大
    https://www.jianshu.com/p/a5cdcb909d81
    http://blog.csdn.net/happyteafriends/article/details/23272059
    http://blog.csdn.net/caroline_wendy/article/details/25230835
    http://www.php.cn/python-tutorials-361337.html

Mysql

http://blog.csdn.net/xsj_blog/article/details/51690767
http://blog.csdn.net/DERRANTCM/article/details/51534411
http://blog.csdn.net/xlgen157387/article/details/46899031
事務
優化
索引

redis

http://blog.csdn.net/zdp072/article/details/50991116
http://www.100mian.com/mianshi/dba/37381.html
https://zhuanlan.zhihu.com/p/32540678
如何保證redis中的資料都是熱點資料
redis 事務
redis 加鎖

nginx面試題

https://segmentfault.com/a/1190000010677483

相關文章