学习 第2页
Linux_练习_24.4.7-北梦の博客

Linux_练习_24.4.7

练习1 1、以root用户登录linux 2、查看当前位置 pwd 3、查看当前位置有什么 ls -a 4、查看一个initial开头的文件的性质是啥 file initial-setup-ks.cfg 5、查看该文件的前6行内容 head -n 6 ini...
北梦的头像-北梦の博客SVIP北梦9个月前
0361

Mysql_数据插入删除修改_作业_24.4.1

P96 分别插入 合并插入 P100 P105
北梦的头像-北梦の博客SVIP北梦9个月前
0881

Python_练习_24.3.29

选择题 try-except-else-finally练习 编写程序,按用户输人的半径计算圆的面积,若半径为负值则抛出异常
北梦的头像-北梦の博客SVIP北梦10个月前
0241

Linux_练习_24.3.29

练习1 1、查看当前登录的用户信息,并理解系统显示的信息含义 who 2、查看系统中用户的信息,统计出不同类型用户的数量 cat /etc/passwd -b 3、创建一个自己姓名的新用户,设置其密码为:redhat...
北梦的头像-北梦の博客SVIP北梦10个月前
0711

Python_练习_24.3.28

class ShoppingCart: def __init__(self): self.items = [] def add_items(self, item): if item in items_price: self.items.append(item) print(f'{item}已添加到购物车') else: print(f'没有...
北梦的头像-北梦の博客SVIP北梦10个月前
0585

MYSQL_练习_24.3.25

练习1 练习2
北梦的头像-北梦の博客SVIP北梦10个月前
06512

Python_封装和继承_练习

使用继承机制,为Car类创建两个子类:赛车(Racing_Car)类和公交车(Bus)类。为Car类定义属性最高时速(Top_speed)属性和核载人数(Nuclear_Number)方法,并分别通过子类对象调用父类中的成...
北梦的头像-北梦の博客SVIP北梦10个月前
0448

MYSQL_练习_5个表_24.3.18

drop database if exists t4; create database if not exists t4; use t4; drop table if exists account; create table account ( userid char(6) not null primary key comment '用户号', ful...
北梦的头像-北梦の博客SVIP北梦10个月前
0609

Python_练习_24.3.15

class Friend: def __init__(self): self.friend_li = {} # 实例方法 def welcome(self): print('欢迎来到好友管理系统') print('1.添加好友') print('2.删除好友') print('3.展示好友') print(...
北梦的头像-北梦の博客SVIP北梦10个月前
07211

MySQL_练习_24.3.11

-- (1)删除数据库 drop database if exists t3; -- (2)创建数据库 create database if not exists t3; -- (3)使用数据库 use t3; -- 删除数据表 drop table if exists book; -- 在t3中创建数据...
北梦的头像-北梦の博客SVIP北梦10个月前
05611