我要执行的代码:
print "Creating account %s with the password %s" % (username1, password1)
答案 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)