Alright, i need to make a string defined as rootString that looks like this:
F:0.0
The letter F is derived from a previous string, obtained by:
root = str(newickString[-1])
And the float 0.0 can be as such:
rootD = 0.0
My question is, how do I combine both variable name and float value with a colon?
On older versions of Python (<2.6) you will need to do:
instead of