我想编写一个函数,将一个字典转换成一个Gtk-ListStore,其中Gtklist-store应该有n列,第一个是字典的键和值,其余的是空字符串。 N应该由用户给出。

ListStore的构造函数要求列的类型。如何用正确的数字指定它们?

这是仅支持2列或3列来演示该问题的函数:

def dict2ListStore(dic, size=2):
  if size == 2:
    liststore = Gtk.ListStore(str, str)
    for i in dic.items():
       liststore.append(i)
    return liststore
  elif size == 3:
    liststore = Gtk.ListStore(str, str, str)
    for i in dic.items():
       l = list(i)
       l.append("")
       liststore.append(l)
    return liststore
  else:
    print("Error!")
    return

最佳答案

liststore = Gtk.ListStore(*([str] * size))


[str] * size是具有size重复的str的列表。

func(*args)是将序列args中包含的值作为多个参数传递的方式。

关于python - Python:调用具有不同数量参数的函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19198520/

10-13 03:32