我的python语法有问题,我似乎无法理解

时间:2018-11-12 00:29:47

标签: python

我要执行的代码:

print "Creating account %s with the password %s" % (username1, password1)

The error I cant seem to fix

2 个答案:

答案 0 :(得分:1)

您正在使用Python3。需要括号来调用打印函数:

print("Creating account %s with the password %s" % (username1, password1))

答案 1 :(得分:0)

似乎您使用的是python 3,因此如果在print语句中使用python 3,请在print()括号中加上括号。 请参考文档。 https://docs.python.org/3/library/functions.html#print

感谢和问候 纳文·达拉尔(Navin Dalal)