搜索结果
查询Tags标签: input,共有 1530条记录-
python - 拼接,python流程控制
******几种拼接方法****** ===== + 拼接 ===== 用 + 号将字符串拼接起来 =====.join拼接===== 连接字符串数组。将字符串、元组、列表中的元素以指定的字符(分隔符)连接生成一个新的字符串。 可以用一个指定的字符来讲字符串里面每一个元素(每个单个个体)连接起来。 …
2022/1/7 20:04:12 人评论 次浏览 -
python - 拼接,python流程控制
******几种拼接方法****** ===== + 拼接 ===== 用 + 号将字符串拼接起来 =====.join拼接===== 连接字符串数组。将字符串、元组、列表中的元素以指定的字符(分隔符)连接生成一个新的字符串。 可以用一个指定的字符来讲字符串里面每一个元素(每个单个个体)连接起来。 …
2022/1/7 20:04:12 人评论 次浏览 -
多测师肖老师__python语句判断18
python中的语句一、if语句 (1)单分支: 格式: if 判断条件执行语句块1 else:执行语句块2 备注:判断条件 if中可以使用比较运算符 >,<,!=,==,>=,<= 在学习自动化中可以用if语句断言, 案例1: a=10if a != 10:print("你中奖了")else:print(&…
2022/1/7 11:03:37 人评论 次浏览 -
多测师肖老师__python语句判断18
python中的语句一、if语句 (1)单分支: 格式: if 判断条件执行语句块1 else:执行语句块2 备注:判断条件 if中可以使用比较运算符 >,<,!=,==,>=,<= 在学习自动化中可以用if语句断言, 案例1: a=10if a != 10:print("你中奖了")else:print(&…
2022/1/7 11:03:37 人评论 次浏览 -
283. Move Zeroes
Given an integer array nums, move all 0s to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without making a copy of the array. Example 1: Input: nums = [0,1,0,3,12] Output: [1,3,12,0,0]…
2022/1/7 6:03:40 人评论 次浏览 -
283. Move Zeroes
Given an integer array nums, move all 0s to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without making a copy of the array. Example 1: Input: nums = [0,1,0,3,12] Output: [1,3,12,0,0]…
2022/1/7 6:03:40 人评论 次浏览 -
344. Reverse String
Given an integer array nums, move all 0s to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without making a copy of the array. Example 1: Input: nums = [0,1,0,3,12] Output: [1,3,12,0,0]…
2022/1/7 6:03:33 人评论 次浏览 -
344. Reverse String
Given an integer array nums, move all 0s to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without making a copy of the array. Example 1: Input: nums = [0,1,0,3,12] Output: [1,3,12,0,0]…
2022/1/7 6:03:33 人评论 次浏览 -
Python+selenium 【第十三章】自动化分层原理,iweb项目实战
题记:今天主要跟大家讲述一下自动化分层的原理,讲述一下为什么需要做数据分离在自动化测试过程中,把测试数据从测试代码中分离出来,可以大大降低维护的成本。 例如:使用代码与测试数据分离,当测试数据发生变化时,只需要修改数据即可,不会对主干代码产生影响。当前de…
2022/1/6 14:04:14 人评论 次浏览 -
Python+selenium 【第十三章】自动化分层原理,iweb项目实战
题记:今天主要跟大家讲述一下自动化分层的原理,讲述一下为什么需要做数据分离在自动化测试过程中,把测试数据从测试代码中分离出来,可以大大降低维护的成本。 例如:使用代码与测试数据分离,当测试数据发生变化时,只需要修改数据即可,不会对主干代码产生影响。当前de…
2022/1/6 14:04:14 人评论 次浏览 -
python期末预测
一、比较两个数的大小较大者输出 x = int(input("请输入第一个参数:")) y = int(input("请输入第二个参数:")) if( x == y): print("两个数相同") elif (x >y): print(x) else: print(y) 二、1到100求和 sum=0 for i in range(1…
2022/1/6 11:03:34 人评论 次浏览 -
python期末预测
一、比较两个数的大小较大者输出 x = int(input("请输入第一个参数:")) y = int(input("请输入第二个参数:")) if( x == y): print("两个数相同") elif (x >y): print(x) else: print(y) 二、1到100求和 sum=0 for i in range(1…
2022/1/6 11:03:34 人评论 次浏览 -
Python初学笔记3
1、单分支if语句 某停车场的收费标准如下图所示,编写程序,通过input()函数获取用户输入的停车时长(小时),使用单分支if语句计算小型汽车在白天(8:00-23:00)的停车费用(元)。 import math timex=float(input("停车时间(以小时为单位):")) if timex<…
2022/1/5 17:05:25 人评论 次浏览 -
Python初学笔记3
1、单分支if语句 某停车场的收费标准如下图所示,编写程序,通过input()函数获取用户输入的停车时长(小时),使用单分支if语句计算小型汽车在白天(8:00-23:00)的停车费用(元)。 import math timex=float(input("停车时间(以小时为单位):")) if timex<…
2022/1/5 17:05:25 人评论 次浏览 -
【Python入门教程】第12篇 类型转换
本篇我们学习 Python 中的数据类型转换以及一些有用的类型转换函数。 Python 类型转换 为了获取用户的输入,我们可以使用 input() 函数。例如: value = input(Enter a value:) print(value)当我们执行以上代码时,终端将会提示我们输入一个值: Enter a value:当我们输入…
2022/1/4 20:04:57 人评论 次浏览