06 2015 档案
摘要:import itertools 排列: 4个数内选2个 >>> print list(itertools.permutations([1,2,3,4],2)) [(1, 2), (1, 3), (1, 4), (2, 1), (2, 3), (2, 4), (3, 1), (3, 2), (3, 4), (4, 1), (4, 2), (4, 3)] 组合:4个数内选2个: >>> p...
阅读全文
摘要:ADB not responding. If you'd like to retry, then please manually kill "adb.exe" and click 'Restart'Errors from ADB:ddms: 'I:\android-sdk\platform-tool...
阅读全文