Print a numeric variable

MyString = "abc" +  str(MyValue) + "def"
MyString += "hij"

Insert value strings into a string

#Insert variables directly (NOTE THE 'f' BEFORE THE STRING!! - requried for this)
my_string = f"Something {string_a} blah {string_b}"

#Original typical method
my_string = "Something {} blah {}".format(string_a, string_b)

#Or you can name the insertion points with keywords:
my_string = "Something {str_a} blah {str_b}".format(str_b=string_b, str_a=string_a)

Decimal places

For a float value
my_string += f"\nBrightness: {round(my_value, 1)}"    #Limit value to 1 decimal place
For an integer value
my_string += f"\nBrightness: {round(float(my_value), 1)}"    #Limit value to 1 decimal place

Convert string to value

See here

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *