https://docs.python.org/2/tutorial/introduction.html#unicode-strings
I'm currently trying to figure out how to dynamically create u-strings (which are in the form of u'helloWorld' for example). I'd like to create a u-string with string concatenation or string injection if it were possible, to use a variable to dynamically create a new u-string such as u'{variableName}'. Is there a way to accomplish this?
The usage of the Python 2 u-strings are for usage of the gcloud functions, where I'm trying to dynamically add documents. The documentation makes use of u-strings and can be found at:
https://firebase.google.com/docs/firestore/manage-data/add-data
mys = u"one" + u"two"should work fine in Python 2.