/images/avatar.jpeg

假使我有了孩子

作为一个20多岁的男人,没有经历过恋爱和爱情,自然也没有孩子。 但是作为曾经是一个无知,愚蠢,懦弱孩子的我, 也许更加深知一个孩子在怎样的成长道

Python CookBook

platform 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 import platform # 获取操作系统的位数 print('architecture: ', platform.architecture()) # architecture: ('64bit', 'ELF') # 计算机类型/CPU架构 print('machine: ', platform.machine()) # machine: x86_64 aarch64 print('system:', platform.system()) # Linux # 获取L