代码为: #!/usr/bin/python # _*_ coding:utf-8_*_ # print("hello world!") name = input("name:") age = int(input("age:")) print(type(age)) #print(type(age), type(str(age))) home = input("home:") print(type(home)) info3=''…
TypeError: unsupported operand type(s) for +: 'int' and 'str' [closed] sql="insert into auto_transfer_data(atd_type,atd_mogodb_count,atd_mysql_before_count,atd_create_date)values('"+at_type+"','"+str(mongodbcount)+"','"+str(m…
使用format函数解决问题 for page in range(1,pagebox+1): url = "https://www.dd373.com/s/rbg22w-x9kjbs-wwf11b-0-0-0-qquvn4-0-0-0-0-0-0-0-"+format(page)+".html?" + urlencode(data) try: page1 = page_currentpage(url) if page1==page: response = reque…
自己总是写程序时候用 + 拼接的时候忘记变量类型要一致,如下面 frame_num = "1" for i in range(1, frame_num + 1, 1): self.by_xpath("//table/tbody/tr[{}]/td[2]/input[1]".format(i)).send_keys(min_price) self.by_xpath("//table/tbody/tr[{}]/td[2]/input[2]".form…
#测试程序 import os from pydub import AudioSegment #已经确定, # enPath = "%s%s/%s"%(enDir,file,enfile) #英文文件的路径 # cnPath = "%s%s/%s"%(cnDir,file,enfile.replace("en_w","cn_w"))#中文文件的路径 path1 = "C:\\Users\\Administrator\…
n = input() if n>=100:print(int(n)/10) else:print(int(n)*10) 报错内容: Traceback (most recent call last): File "1.py", line 12, in <module> if n>=100:print(int(n)/10) TypeError: '>=' not supported between instances of 'str' and 'int'…
Error Msg Traceback (most recent call last): File "E:/code/adva_code/my_orm.py", line 108, in <module> user.save() File "E:/code/adva_code/my_orm.py", line 91, in save sql = "insert {}({}) value({})".format(self._meta[&…
今天学习python基础—分支与循环,接触到了if.在练习一个if语句的时候,出现了错误. 题目是: 根据分数划分成四个级别:优秀.良好.及格.不及格,分数是72: grade = 72if grade >= 90: print('优秀')elif grade >=70: print('良好')elif grade >=60: print('及格')else: print('不及格')   这种情况下没有报错,打印出:良好.     然后我就想换一种方法,把前几天学到的input也用进去…
当我们编程时,有时会出现如下错误:TypeError: '>' not supported between instances of 'str' and 'int' 如下图: 这是因为input()返回的数据类型是str类型,不能直接和整数进行比较,必须先把str转换成整型,使用int()方法:age = int(input ("请输入你的年龄:")) 改正之后为: 这样程序就达到了预期的效果了…
基本数据类型(int, bool, str,list,tuple,dict) 一.python基本数据类型 1. int  整数. 主要用来进行数学运算 2. str  字符串, 可以保存少量数据并进行相应的操作,用双引号或单引号或三引号括起来 3. bool 判断真假, True, False 4. list 存储大量数据.用[ ]表示 5. tuple 元组, 不可以发生改变,只读列表 用( )表示 6. dict 字典, 保存键值对, 一样可以保存大量数据{key:value} 7. se…