Example:
regular_string = "%s %s" % ("foo", "bar")
result = {}
result["somekey"] = regular_string,
print result["somekey"]
# ('foo bar',)
Why result["somekey"] tuple now not string?
|
Example:
Why |
||||
|
|
|
Because of comma at the end of the line. |
|||||||
|
|
When you write
Python reads
|
|||
|
|