本文整理匯總了Python中parameter.Parameter.setEnv方法的典型用法代碼示例。如果您正苦於以下問題:Python Parameter.setEnv方法的具體用法?Python Parameter.setEnv怎麽用?Python Parameter.setEnv使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類parameter.Parameter
的用法示例。
在下文中一共展示了Parameter.setEnv方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: open
# 需要導入模塊: from parameter import Parameter [as 別名]
# 或者: from parameter.Parameter import setEnv [as 別名]
for x in open("contain-angle-quotes.csv")]
def title_index(lst, title):
try:
return lst.index(title)
except Exception:
return -1
def generate_csv_list(clm1, index, title_lst):
line_count = max(len(clm1), len(title_lst), 1)
column1 = clm1 + ['']*(line_count-1)
column2 = [index+1] + ['']*(line_count-1)
column3 = title_lst + ['']*(line_count-len(title_lst))
return zip(column1, column2, column3)
Parameter.setEnv('kevin')
simpleRes = LncSimpleSearchResultTestCase()
csv_output_filename = "angle-quotes-results.csv"
csv_output_file = open(csv_output_filename, "a")
for legal in legislation:
for tag in legal[2:]:
cur_titles = simpleRes.get_results_list(tag)
index = title_index(cur_titles, legal[1])
csv_line = generate_csv_list([tag, legal[1], legal[0]], index, cur_titles)
for cl in csv_line:
line = ("%s\t%s\t%s\n" % cl)
csv_output_file.write(line.encode('utf-8'))