Python-报错TypeError: ‘NoneType‘ object is not subscriptable-.reverse

Python-报错TypeError: ‘NoneType‘ object is not subscriptable-.reverse,第1张

写Python代码时报错:

TypeError: ‘NoneType‘ object is not subscriptable

上代码:

def four_read(four_ele_str):
	table=str.maketrans('0123456789','零壹贰叁肆伍陆柒捌玖')
	integer_unit1=['','拾','佰','仟'].reverse()
	
	four_ele_str=four_ele_str.translate(table)
	finial_str=''
	i=0
	while i<4:
		if four_ele_str[i]=='零':
			i+=1
			continue
		
		finial_str=finial_str+four_ele_str[i]+integer_unit1[i]
		i+=1
		
		
	return(finial_str)

检查发现:
.reverse()方法返回空对象,可以直接修改调用方法的序列。


不需要赋值语句。



修改代码如下:

def four_read(four_ele_str):
	table=str.maketrans('0123456789','零壹贰叁肆伍陆柒捌玖')
	integer_unit1=['仟','佰','拾','']
	
	four_ele_str=four_ele_str.translate(table)
	finial_str=''
	i=0
	while i<4:
		if four_ele_str[i]=='零':
			i+=1
			continue
		
		finial_str=finial_str+four_ele_str[i]+integer_unit1[i]
		i+=1
		
		
	return(finial_str)

问题解决!

总结: 方法的调用大多数是没有返回值的,可以直接针对对象使用方法,无需赋值。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/570806.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-09
下一篇 2022-04-09

发表评论

登录后才能评论

评论列表(0条)

保存