SyntaxError:语法无效“ URL =(“ https://etherscan.io/address/%s”地址)

时间:2019-04-16 07:40:21

标签: python

这是我的打印代码:"url = ("https://etherscan.io/address/%s"address)",我收到了SyntaxError:无效的语法

我的Python版本是3.7,我是python新手 我认为%s是问题,我不是Python 3.7中的替代品

1 个答案:

答案 0 :(得分:1)

url = ("https://etherscan.io/address/%s" % address)
                                         ^

您缺少分配变量的%。或者,您可以使用其他形式的字符串格式:

使用.format()

url = "https://etherscan.io/address/{}".format(address)

使用f字符串:

url = f"https://etherscan.io/address/{address}"