This message was deleted.
# python
s
This message was deleted.
s
ah or this is even better
Copy code
# concat takes a list of args and concatenates all of them into a single output:
url = Output.concat("http://", hostname, ":", port, "/")
p
yep - basically, you can either use the output values directly or you have to use
apply
,
concat
functions if you want to manipulate it (even if it’s something little like adding dot at the end)
s
amazing! ty