python CPU情報の印刷

666 ワード

CPU情報の印刷
with open("/proc/cpuinfo") as file:
    for line in file:
        print(line)