Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说python里typeerror_not enough of,希望能够帮助你!!!。
def a(x,y):
print("%s : %s "%x,y)
如上代码,我定义了个含两个参数的函数,传参时报错如下。
TypeError: not enough arguments for format string
将参数用括号括起后(如下所示),问题就解决了。
def a(x,y):
print("%s : %s "%(x,y))
下面是操作中的截图。
总结:在学习python时,要注意下python版本
python3.0以后,在print后要加括号,
对一般输出:
python2要这么写
print'helloworld'
python3.x要这么写
print('helloworld')
格式化输出:
python2要这么写
def a(x,y):
print("%s : %s "%x,y)
python3.x要这么写
def a(x,y):
print("%s : %s "%(x,y))
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。