使用Python能夠很快獲得一些系統的信息,好比平臺,字節序,和Python最大遞歸限制,好比:python
import sys # get byte order print sys.byteorder # get platform print sys.platform # nothing to say ^_^ print sys.getrecursionlimit()
關於字節序可使用如下的C代碼驗證:spa
1 #include <stdio.h> 2 3 typedef unsigned char * char_format; 4 5 void show_byte(char_format type, int length) { 6 7 int i; 8 for (i = 0; i < length; i++) { 9 fprintf(stdout, "%2.x ", type[i]); 10 } 11 fprintf(stdout, "\n"); 12 } 13 14 int main(int argc, char const *argv[]) { 15 16 int num = 0x12345678; 17 18 fprintf(stdout, "%x : ", num); 19 show_byte((char_format)&num, sizeof(num)); 20 21 return 0; 22 }
小端序是權值低的在前面,大端序是權值高的在前面。code
好比0x12345678在小端序下 是按照78 56 34 21存儲的,而大端序是按照 12 34 56 78 存儲的。orm