salut
je suis un débutant dans la langue python et j'ai beaucoup à apprendre de vous
voila j'ai une question si vous le permettez ... merci
j'ai une liste que je veux la superposé et je ne sais pas comment procéder....

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def __init__(self, session, args = 0):
		self.session = session
 
		list = []
		list.append(("ControPart", "com_three"))
		list.append((" Informt ", "com_four"))
		list.append(("Conf", "com_five"))
		list.append(("Facb", "com_two"))
		list.append(("HDMU_SoftcamControl", "com_one"))
		list.append(("BMediaCenter", "com_sixe"))
		list.append(("SoftcamControl", "com_seven"))
		list.append(("SkinSelector", "com_eight"))
		list.append(("NetworkBrowser", "com_nine"))
		# list.append(("Panel", "com_ten"))
		list.append((_("Exit"), "exit"))
		Screen.__init__(self, session)
		self["myMenu"] = MenuList(list)
		self["myGreenBtn"] = Label(_("About"))
		self["myActionMap"] = ActionMap(["SetupActions", "ColorActions"],
		{
			"ok": self.go,
			"cancel": self.cancel,
			"green":self.textilos,
		}, -1)
par exemple
ControPart Informt Conf
Facb HDMU BMediaCenter
SoftcamControl SkinSelector NetworkBrowser
Panel Exit
par trois

merci