本文整理汇总了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'))