学习 第2页
个人学习记录

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

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...
北梦的头像-北梦の博客SVIP北梦2年前
013010

html 太极图

<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title></title> </head> <style> body{background-color: darkgray;} .taiji{ margi...
珊瑚海的头像-北梦の博客珊瑚海2年前
011710
2023上半年试卷A(西式甜品网)_个人解题过程-北梦の博客

2023上半年试卷A(西式甜品网)_个人解题过程

题目:西式甜品网 一、语言和环境 实现语言:HTML5+CSS3 环境要求:dw或 HBuilder 二、页面设计 三、要求 使用HTML5 + CSS3完成页面设计,要求HTML代码和CSS代码分离。 四、推荐实现步骤 1、页...
北梦的头像-北梦の博客SVIP北梦2年前
015210
跟李哥不一样的导航栏-北梦の博客

跟李哥不一样的导航栏

css.header{ background-color: orange; height: 50px; width: 100%; margin-top: 10px; } .ccc{ width: 800px; background-color: none; /* 居中 */ margin: auto; } ul { /*去点*/ list-style...
珊瑚海的头像-北梦の博客珊瑚海2年前
122510
python购物车练习-北梦の博客

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...
koniaoer的头像-北梦の博客koniaoer1年前
0779

Python_练习_24.3.8

1.写出下列题目中的pyhon语句 定义一个Employee类(员工) 在员工类中定义类属性age(年龄)为40 定义一个方法displayCount(),输出“公司最高工资” 通过类Employee修改类属性age的值=35 在方...
北梦的头像-北梦の博客SVIP北梦1年前
01039

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...
X.蔡徐坤的头像-北梦の博客X.蔡徐坤1年前
01079

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