代码共14篇

Linux【yum源】一键换源(全)

中国教育网海外 bash <(curl -sSLk https://cdn.b52m.cn/static/linuxsource.sh) bash <(curl -sSLk https://cdn.b52m.cn/static/linuxsource.sh) --edu bash <(curl -sSLk https://cd...
北梦的头像-北梦の博客SVIP北梦7个月前
03641
MYSQL_数据库设计与开发综合案例练习_24.4.8-北梦の博客

MYSQL_数据库设计与开发综合案例练习_24.4.8

题目 综合案例-学生选课系统 学生选课管理系统用来帮助高校学生选修课程,学生通过系统可以查看所有选修课程的相关信息,包括课程名、学时、学分、也可以查看相关授课教师的信息,包括教师姓名...
北梦的头像-北梦の博客SVIP北梦1年前
0771

Python_练习_24.4.7

练习1 def GetAge(age): try: if age <= 0: raise Exception('输入的年龄不符合要求') except ValueError: print('年龄必须大于0') raise GetAge(-1) 练习2 num_one = int(input('请输入被除...
北梦的头像-北梦の博客SVIP北梦1年前
0531

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

P96 分别插入 合并插入 P100 P105
北梦的头像-北梦の博客SVIP北梦1年前
01571

Python_练习_24.3.29

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

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北梦1年前
0785

MYSQL_练习_24.3.25

练习1 练习2
北梦的头像-北梦の博客SVIP北梦1年前
010312

Python_练习_24.3.22

class School_number(): def __init__(self, name, age): self.name = name self.age = age def describe(self): print(f'我的名字是{self.name},我的年龄是{self.age}') class Student(School...
北梦的头像-北梦の博客SVIP北梦1年前
07615

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北梦1年前
01009

Python_练习_24.3.15

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