格式化输出 %s # 格式化输出 name = input('请输入你的姓名:') age = input('请输入你的年龄:') password = input('请输入你的密码:') msg=''' name=%s password=%s age=%s '''%(name,password,a ...
分类:
其他好文 时间:
2021-06-03 18:09:57
阅读次数:
0
一.前端的代码 <p>Name: <input type='text', name = 'name'/></p> <p>Age: <input type = 'text' name ='age'/></p> <p>Sex: <label><input type = 'radio' name = 's ...
分类:
Web程序 时间:
2021-06-03 18:02:30
阅读次数:
0
@Bean public DataSource getDataSource() throws SQLException { DataSourceBuilder dataSourceBuilder = DataSourceBuilder.create(); dataSourceBuilder.driv ...
分类:
数据库 时间:
2021-06-03 17:48:45
阅读次数:
0
0 环境 系统环境:win10 1 发现问题 为el-input设置label-width="100px"不生效 2 解决问题 1 为当前页面所有el-input设置相同宽度 .el-input { width: 自定义宽带; } ...
分类:
其他好文 时间:
2021-06-02 19:41:03
阅读次数:
0
1、操作系统(***) 2、python入门 编程语言分类(***) 机器语言 汇编语言 高级语言 编译型:go 解释型:python python介绍 三大特性(******) python语言与python解释器发展史 安装py解释器(*****) python2.7解释器 python3.8解 ...
分类:
其他好文 时间:
2021-06-02 19:02:23
阅读次数:
0
v-model: 双向数据绑定语法糖:1.input标签的值根据data里的name确定,所以用:value='name', 2.input标签的值变化,会修改name值,用input事件 <template> <div class="son-container"> name: <!-- <inpu ...
分类:
其他好文 时间:
2021-06-02 15:50:48
阅读次数:
0
package cn.edu360 import java.io.{FileInputStream, FileOutputStream, ObjectInputStream, ObjectOutputStream} /** * Created by zx on 2017/6/25. */class ...
分类:
其他好文 时间:
2021-06-02 15:46:04
阅读次数:
0
#房贷计算器 # 第一部分代码 money = int(input('请输入贷款总金额:(整数、单位万)')) time = int(input('请输入贷款年限:(整数)')) rate = float(input('请输入贷款年利率:(4.9,表示4.9%)')) # 将万转换为元 money ...
分类:
编程语言 时间:
2021-05-24 16:49:34
阅读次数:
0
Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i+1??, ..., N?j?? } where 1≤i≤j≤K. T ...
分类:
其他好文 时间:
2021-05-24 12:48:45
阅读次数:
0
设置控件的值 /// <summary> /// 根据ID,NAME双重判断并设置值 /// </summary> /// <param name="tagName"></param> /// <param name="id"></param> /// <param name="value"></p ...
分类:
编程语言 时间:
2021-05-24 10:49:19
阅读次数:
0