摘要: 一、安装 1. 安装完成之后,在终端输入 git --version 查看版本信息 2. 创建一个全局用户名、全局邮箱作为配置信息 git config --global user.name "your_name" git config --global user.email "your_emai 阅读全文
posted @ 2021-01-31 11:13 聪明的大嘴花 阅读(91) 评论(0) 推荐(0) 编辑
摘要: stu_dir={"name":"kobe","number":"24","hob":"basketball"} for k,v in stu_dir.items(): print(k,v,"333") 阅读全文
posted @ 2021-01-12 22:12 聪明的大嘴花 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1.\cp -rf 不需要按y确认,直接拷贝 2.判断字符串是否为空,最好加上x result='' if [ x"$result" == x"" ];then echo "the result is ' ' " else echo "the result is not ' ' " fi 3.暂时没 阅读全文
posted @ 2021-01-04 22:18 聪明的大嘴花 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 1. 标识符不可以是关键字 标识符是由字母,数字,下划线构成 标识符第一个字符只能是字母或者下划线 标识符区分大小写 int aaa = 100; cout << aaa << end1; 给变量起名的时候,最好能够做到见名知意2 2.1 整型 ⭐ 数据类型存在的意义:给变量分配合理的空间 数据类型 阅读全文
posted @ 2020-12-22 22:10 聪明的大嘴花 阅读(106) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wupeiqi/articles/7552008.htmlfrom flask import Flask, render_template, requestapp = Flask(__name__)@app.route('/')def hello_wo 阅读全文
posted @ 2020-12-22 22:08 聪明的大嘴花 阅读(91) 评论(0) 推荐(0) 编辑