如何在不使用python返回的情况下在函数中打印for循环?

时间:2018-05-23 02:00:58

标签: python python-3.x python-2.7

我有一个python程序,它从XML文件中获取一个值并将其与给定代码匹配,但我不知道如何在某些条件下打印该值。

我的Python程序是:

class setMap(getXml):

    def __init__(self, event_log_row):
        self.event_log_row = event_log_row

    def code(self):
        for each in self.event_log_row:
            self.get_map(each)
        # if I use return here, it basically returns only one value, which is understandable.            

    def get_map(self, event_code):
        dict_class = getXml() # Getting XML from another class
        dictionary = dict_class.getdescription()
        for keys, values in dictionary.items():
            if keys == event_code:
                return values  

# I'm not allowed to use for loop or any conditions after this 
code = ['1011', '1015', '1013']
obj = setMap(code)
print(obj.code())

是否有可能实现我打算实现的目标,有人可以给我一些建议,PLZ。

由于

2 个答案:

答案 0 :(得分:3)

您可以使用list comprehension

    def code(self):
        return [self.get_map(each) for each in self.event_log_row]

[print(x) for x in obj.code()]

答案 1 :(得分:0)

如果你得到

的结果
result  = [["One","Two"],["Three"], ["Four","Five","Six"]]        # obj.code() result

来自您的setMap.code(),您可以使用

进行打印
result  = [["One","Two"],["Three"], ["Four","Five","Six"]]

print(*result, sep ="\n") # unpack outer list for printing 

print( *(b for a in result for b in a), sep ="\n") # flatten inner lists, unpack

导致

['One', 'Two']
['Three']
['Four', 'Five', 'Six']

One
Two
Three
Four
Five
Six

指定换行符的print-seperator将它们分成不同的行,不需要字符串连接。

有关sep的详细信息:What does print(... sep='', '\t' ) mean?Doku print()