摘要:
news = '''In the modern Chinese history of fine arts education, Xu Beihong (1895~ 1953), is to adopt the western art long modern painting master, prodromal type of art educators. Xu Beihong was born ... 阅读全文
摘要:
#字符串 s = 'HelloWorld' for i in s: print(i) # 列表 ls = ['Help', 'Make', 'PyCharm', 'Better'] for i in ls: print(i) # 元组 tup = tuple('tuple') for i in tup: print(i) # 字典 names = ['Help... 阅读全文
摘要:
熟悉常用的Linux操作 请按要求上机实践如下linux基本命令。 cd命令:切换目录 (1)切换到目录 /usr/local cd /usr/local (2)去到目前的上层目录 cd /usr (3)回到自己的主文件夹 cd ~ ls命令:查看文件与目录 (4)查看目录/usr下所有的文件 ls 阅读全文