3

Example:

regular_string = "%s %s" % ("foo", "bar")

result = {}
result["somekey"] = regular_string,

print result["somekey"]
# ('foo bar',)

Why result["somekey"] tuple now not string?

2 Answers 2

16

Because of comma at the end of the line.

Sign up to request clarification or add additional context in comments.

Comments

9

When you write

result["somekey"] = regular_string,

Python reads

result["somekey"] = (regular_string,)

(x,) is the syntax for a tuple with a single element. Parentheses are assumed. And you really end up putting a tuple, instead of a string there.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.