logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

小强期中考试(考察1-9章)

142 可变类型和不可变类型分别列举 3 个可变类型:mutable type,常见的有 : list, dict, set, deque 等不可变类型:immutable type,,常见的有:int, float, str, tuple, frozenset 等只有不可变类型才能作为字典等的键。143 容量为 100 的样本,怎样使用 list 实现随机抽样 10 个使用 rando...

linux入门-shell(.sh)脚本编写和运行

编写第一个shell脚本在gedit中编写.sh格式的文件,保存为a.sh。代码:#! /bin/bash# employ bash shellplayer1=xiaoming # define a player1player2=kenecho "Game start! $player1$player2" # echo is used to printf in termina

#linux#bash
到底了