Skip to content
Advertisement

How to concatenate strings in python?

I am doing automation in python for jira with the addition of jql search inside the service As a result: two JQL queries, one to search for “closed tickets” and the second to search for “created tickets”

But as a result, I can’t add rows now.

JavaScript

Expected Result:

JavaScript
JavaScript

I got two lists inside with tuples. enter image description here

enter image description here

“second result” enter image description here

Advertisement

Answer

You should use f-strings to resolve this issue.

JavaScript

To then get the relevant strings you are interested in I should think you should use:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement