0 攝影或3C 2022-11-12 Python常用的模組內建常數; __name__ ; __file__ ; __doc__ ; __all__ ;__dict__; vars()->Dict[str,str] ; dir()->List[str] vars() type是dict dir() 只有key, type...
0 攝影或3C 2022-11-12 Python逐位元運算(bitwise operation),或or | , 且and & , 互斥或xor ^ , 反向~ ;位元左移 x << y => 效果同x*(2**y) ; 位元右移 x>>1 => 效果同x//2;x>>16效果同 x//(2**16) 逐位元運算 OR | : 其中一個是1,就是1 and &...
近期留言