如何在python中的mysql中输入varible

时间:2017-09-11 09:40:26

标签: python mysql jira-rest-api

命令为.format和%s我在每个可能的组合中使用而没有任何进展。 当我以这种方式使用它时,它正常工作:

last_issue = jira.search_issues('assignee = "ahmet" order by created desc')[0]

但我需要受让人成为一个变数,如果我以这种方式使用它或类似的东西:

assignee = "ahmet"
last_issue = jira.search_issues('assignee =', assignee, 'order by created desc')[0]

它给出了错误,如

response headers = {'Vary': 'User-Agent', 'X-AREQUESTID': '578x1623860x1', 'X-ASESSIONID': 'x0ubjs', 'X-ASEN': 'SEN-L0000000', 'Cache-Control': 'no-cache, no-store, no-transform', 'X-Content-Type-Options': 'nosniff', 'X-AUSERNAME': 'ekaterina', 'X-Seraph-LoginReason': 'OK', 'Content-Encoding': 'gzip', 'Transfer-Encoding': 'chunked', 'Date': 'Mon, 11 Sep 2017 09:38:10 GMT', 'Content-Type': 'text/html;charset=UTF-8', 'Server': 'nginx/1.13.0', 'Connection': 'keep-alive'}
    response text = 

我应该如何以适当的方式制作变量?

1 个答案:

答案 0 :(得分:0)

有效!

 var = "assignee = '{}' order by created desc".format(assignee)
 last_issue = jira.search_issues(var)[0]