摘要:
1 1. 2 ''' 3 knowledge_point: 4 1.练习if...else; 5 2.练习while; 6 3.练习列表的切片取值; 7 8 requirements: 9 购物车: 10 1.程序启动后,输入工资,打印商品列表 11 2.提示用户根据商品编号购买产品 12 3.选择 阅读全文
摘要:
1.flask开发基础与入门: 1.1web开发基础 1.1.1 前端框架: bootstrap, j-query, angular, react 1.2 flask 路由 from flask import Flask # 从flask引入request实例 from flask import r 阅读全文
摘要:
3. MySQL 3.1 安装 3.1.1 win 3.1.1.1 安装 >下载mysql >mysql-front: Host:localhost 端口:3306 用户:root 3.1.2 linux 3.1.2.1 安装 >sudo apt-get install mysql-server m 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
1.1 week 1 > 密码秘文: import getpass username = input('username:') passwd = getpass.getpass('passwd:') 在shell中执行,输入密码时不显示 > python3 中 input() 默认输出的类型为str 阅读全文
摘要:
1.如何将本地的文件添加到已经建好的远程分支上: 1.1 本地文件夹内,右键-git bash - 创建新仓 git init 1.2 git remote add origin 远程仓库的github地址 1.3 添加到本地仓库:git add . 1.4 提交到本地仓库:git commit - 阅读全文