I have a screenshot of the Python script I'm trying to create and I'm having a problem. How do I create a space between two values? I know how to stack labels but I just need a simple space between the port field and the fibers field. Can anyone help me with this?!
more.... python mini-format language plus triple quote syntax... useful for printing.
>>> a = "{}\n{}".format("over","under") >>> b = """ ... hello ... goodbye ... """ >>> >>> print a over under >>> >>> print b hello goodbye
Are you inserting this into a Python script and having the script label the features?
If so, could you please share. I've been stuck on this problem for a while now.
Dan mentioned there's many ways to do this - I thought I'd share another!
>>> myVars = ["spam","eggs"] >>> " ".join(myVars) 'spam eggs'
Thank you! This will be so helpful for me in the future!
Cheers!
Katy
many ways... these are but 2
>>> a = "text" + " " + "more" >>> a 'text more' >>> # or >>> a = "{} {}".format("text","more") >>> a 'text more' >>>
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.