I\'ve got some simple python loop through a name to create a list of devices:
for i in range(18): print(\"sfo-router\",(i))
The problem is it p
Use format:
for i in range(18): print("sfo-router{}".format(i))