排序
Python_练习_24.3.15
class Friend: def __init__(self): self.friend_li = {} # 实例方法 def welcome(self): print('欢迎来到好友管理系统') print('1.添加好友') print('2.删除好友') print('3.展示好友') print(...
HTML定位
作业1 代码 <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <meta name='viewport' content='wid...
html 太极图
<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title></title> </head> <style> body{background-color: darkgray;} .taiji{ margi...
2023上半年试卷A(西式甜品网)_个人解题过程
题目:西式甜品网 一、语言和环境 实现语言:HTML5+CSS3 环境要求:dw或 HBuilder 二、页面设计 三、要求 使用HTML5 + CSS3完成页面设计,要求HTML代码和CSS代码分离。 四、推荐实现步骤 1、页...
跟李哥不一样的导航栏
css.header{ background-color: orange; height: 50px; width: 100%; margin-top: 10px; } .ccc{ width: 800px; background-color: none; /* 居中 */ margin: auto; } ul { /*去点*/ list-style...
python购物车练习
class Shopping: def __init__(self): self.car = [] def shopping_car(self, itme): self.car.append(itme) def shopping_del(self, itme): self.car.remove(itme) def shopping_all(self): if...
Python_练习_24.3.8
1.写出下列题目中的pyhon语句 定义一个Employee类(员工) 在员工类中定义类属性age(年龄)为40 定义一个方法displayCount(),输出“公司最高工资” 通过类Employee修改类属性age的值=35 在方...
3.18mysql五种表代码
create database petstore; use petstore; create table account ( userid char(6) not null , fullname varchar(10) not null , password varchar(20) not null , sex char(2) not...
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...