Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a number of variables which are set and later in my code I want to use these variables together as one single variable with a . separation.

For example

Release=1
Build=2
ServicePack=3
Hotfix=4

Directory=Release.Build.ServicePack.Hotfix

I understand that the above line will not work but I'm not sure how to join the variables together when declaring the last one.

In my example I would like the Directory variable to equal '1.2.3.4'.

Th end goal here is to use os.path to create a directory based on the value of Directory. Given this would a better alternative to use os.path.join and pass in the individual variables instead of a single one?

share|improve this question

1 Answer

up vote 8 down vote accepted
Directory = '.'.join(str(x) for x in (Release, Build, ServicePack, Hotfix))

Turn each variable into a string. Join them together with a '.' in between.

os.path.join("path/to/base", Directory)

will work fine, resulting in

path/to/base/Release.Build.ServicePack.Hotfix

If I were you, I'd either use all caps for those variables, meaning they're constants, or all lower case, as specified in PEP 8.

share|improve this answer
Thanks for the amazingly fast response! I appreciate it. I'll watch those variables name too from now on :) – Craig Aug 7 '11 at 23:28
The naming schema is so you can tell at a glance what the variable is. all lowercase is a variable definition, all caps is a constant, capitalized is a class definition (and some other stuff as well that I'm blanking on at the moment). – Jonathanb Aug 7 '11 at 23:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.