我如何用 Url 在 python 中计数

How do I count up in python with a Url

我不太确定如何解释我的问题。

所以我写的是

    count = 1
    while count <= 100:
         print("https://api.roblox.com/Users/", count)
          count += 1

目标是打印下来https://api.roblox.com/Users/(count)

但最终打印出来的是 ('https://api.roblox.com/Users/', (count))

您想创建一个 https://api.roblox.com/Users/(count) 字符串。方法是:

 "https://api.roblox.com/Users/" + str(count)

您之前的代码创建了一个包含字符串和 int 的元组,这就是打印的内容:

>>> count = 15
>>> print("https://api.roblox.com/Users/", count)
('https://api.roblox.com/Users/', 15)

但是如果你连接字符串,它会做你想要的:

>>> count = 15
>>> print("https://api.roblox.com/Users/" + str(count))
"https://api.roblox.com/Users/15"