排序
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...
MYSQL_数据库设计与开发综合案例练习_24.4.8
题目 综合案例-学生选课系统 学生选课管理系统用来帮助高校学生选修课程,学生通过系统可以查看所有选修课程的相关信息,包括课程名、学时、学分、也可以查看相关授课教师的信息,包括教师姓名...
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('请输入被除...
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'没有...
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...
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...
Python_练习_24.3.15
class Friend: def __init__(self): self.friend_li = {} # 实例方法 def welcome(self): print('欢迎来到好友管理系统') print('1.添加好友') print('2.删除好友') print('3.展示好友') print(...