网站首页 站内搜索

搜索结果

查询Tags标签: input,共有 1530条记录
  • 1.5 编程基础之循环控制 36 计算多项式的值 python

    http://noi.openjudge.cn/ch0105/36/ """ 1.5 编程基础之循环控制 36 计算多项式的值 http://noi.openjudge.cn/ch0105/36/python 小数点位数,python如何保留小数点位数 https://blog.csdn.net/weixin_35955928/article/details/116168978""&quo…

    2022/1/9 22:33:24 人评论 次浏览
  • 创建sqlsession工具类

    //1.sqlsession的获取://类:GetSqlSession, 返回sqlsession对象,无参 public class GetSqlSession {public static SqlSession createSqlSession() {SqlSessionFactory sqlSessionFactory = null;InputStream input = null;SqlSession session = null;try {//获取myba…

    2022/1/9 19:05:29 人评论 次浏览
  • 创建sqlsession工具类

    //1.sqlsession的获取://类:GetSqlSession, 返回sqlsession对象,无参 public class GetSqlSession {public static SqlSession createSqlSession() {SqlSessionFactory sqlSessionFactory = null;InputStream input = null;SqlSession session = null;try {//获取myba…

    2022/1/9 19:05:29 人评论 次浏览
  • python print

    print中的%s格式化输入应用。 不多废话了,进入正题。 说到格式化输入,这里不得不提到一个占位符。占位符顾名思义就是占一个字符的位置,让其他内容插入进来。name = (my name is simon) print(what is your name %s %name)name1 = input("Please input your name:…

    2022/1/9 12:04:15 人评论 次浏览
  • python print

    print中的%s格式化输入应用。 不多废话了,进入正题。 说到格式化输入,这里不得不提到一个占位符。占位符顾名思义就是占一个字符的位置,让其他内容插入进来。name = (my name is simon) print(what is your name %s %name)name1 = input("Please input your name:…

    2022/1/9 12:04:15 人评论 次浏览
  • python+selenium+PageObject

    import timefrom selenium import webdriver from selenium.webdriver.chrome.webdriver import WebDriver from selenium.webdriver.common.by import Byclass HomePage:login_phone = (By.XPATH, //form/div[1]/div/div/div/div/input)login_pwd = (By.XPATH, //input[@…

    2022/1/9 11:03:25 人评论 次浏览
  • python+selenium+PageObject

    import timefrom selenium import webdriver from selenium.webdriver.chrome.webdriver import WebDriver from selenium.webdriver.common.by import Byclass HomePage:login_phone = (By.XPATH, //form/div[1]/div/div/div/div/input)login_pwd = (By.XPATH, //input[@…

    2022/1/9 11:03:25 人评论 次浏览
  • input 输入框只能输入数字

    input输入框只能输入数字的2种方法 (1)设置type=number(h5的属性,有兼容性问题) <input type="number" name="">(2)使用正则表达式 <input type="text" name="" onkeyup="value=value.replace(/[^\d]/g,)&q…

    2022/1/8 23:06:42 人评论 次浏览
  • input 输入框只能输入数字

    input输入框只能输入数字的2种方法 (1)设置type=number(h5的属性,有兼容性问题) <input type="number" name="">(2)使用正则表达式 <input type="text" name="" onkeyup="value=value.replace(/[^\d]/g,)&q…

    2022/1/8 23:06:42 人评论 次浏览
  • python第一天作业

    作业1: print ( " \n\n\n" "英雄商城登录界面" ) print("\t\t\t " ) print ( "英雄商城登录届面") print("-*" *25) print(" 1:用户登录") print(" 2…

    2022/1/8 22:08:00 人评论 次浏览
  • python第一天作业

    作业1: print ( " \n\n\n" "英雄商城登录界面" ) print("\t\t\t " ) print ( "英雄商城登录届面") print("-*" *25) print(" 1:用户登录") print(" 2…

    2022/1/8 22:08:00 人评论 次浏览
  • python第一天作业

    写出如下界面:# 作业1 print("\n\t\t\t英雄联盟商城登录界面\n") print("~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~* ~ * ~\n") print(" 1.用户登录\n") print("\t\t\t2.新用户注册\n") print("\t\t\t3.退…

    2022/1/8 20:07:28 人评论 次浏览
  • python第一天作业

    写出如下界面:# 作业1 print("\n\t\t\t英雄联盟商城登录界面\n") print("~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~* ~ * ~\n") print(" 1.用户登录\n") print("\t\t\t2.新用户注册\n") print("\t\t\t3.退…

    2022/1/8 20:07:28 人评论 次浏览
  • [蓝桥杯] 成绩分析 (Python 实现)

    题目: 代码: n = int(input()) score = [] for _ in range(n):score.append(int(input())) print(max(score)) print(min(score)) print(%.2f%float(sum(score)/len(score)))

    2022/1/8 17:06:37 人评论 次浏览
  • [蓝桥杯] 成绩分析 (Python 实现)

    题目: 代码: n = int(input()) score = [] for _ in range(n):score.append(int(input())) print(max(score)) print(min(score)) print(%.2f%float(sum(score)/len(score)))

    2022/1/8 17:06:37 人评论 次浏览
扫一扫关注最新编程教程