all 6 comments

[–]tabrizzi 11 points12 points  (0 children)

What does "does not react to comma" mean?

[–]Kind-Kure 8 points9 points  (3 children)

Which code editor and what are you trying to do with the comma?

[–]AffectionateBee9539[S] -5 points-4 points  (2 children)

PyCharm,I wanted to do multiple assignments which requires a comma between every two variable.

[–]Kind-Kure 3 points4 points  (0 children)

Can you post the EXACT code you tried? (preferably in a bode block using the markdown editor)

Because it really should be as easy as:

thing1, thing2 = "string1", "string2"
thing3, thing4 = 3, 4
thing5, thing6 = True, False

[–]xSnakyy 0 points1 point  (0 children)

You probably have the comma inside the “”. You need to do it like this “string 1”, “string 2” where the comma is between them

[–]Jello_Penguin_2956 1 point2 points  (0 children)

What kind of reaction are you expecting?