Bonjour, par le passé j'avais codé sans objet, je m'efforce de recoder en objet, mais j'ai une boucle qui ne tourne qu'une seule fois malgré que la liste augmente, je ne comprends pas, j'ai juste localiser le problème au niveau de la boucle.

Voici le code en supposant que les parties liées a Tkinter ne vous dérange pas, ce n'est pas de là que viens le problème :

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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
 
#-------------------------------------------------------------------------------
# Name:        module1
# Purpose:
#
# Author:      JMLAT
#
# Created:     04-09-2024
# Copyright:   (c) JMLAT 2024
# Licence:     <your licence>
#-------------------------------------------------------------------------------
 
 
#-------------------------------------------------------------------------------
# Name:        module2
# Purpose:
#
# Author:      LENOVO
#
# Created:     29/02/2024
# Copyright:   (c) LENOVO 2024
# Licence:     <your licence>
#-------------------------------------------------------------------------------
 
 
 
 
#import tkinter as tk
#import tkinter
from tkinter import *
from tkinter.messagebox import showinfo   #permet Fenetre dialogue
from random import *
#from tkinter import filedialog
from pandastable import Table
#from pandastable import * # Ne fonctionne que plus bas.
import pandas as pd
import numpy as np
from math import ceil # ceil
import warnings
warnings.filterwarnings("ignore")
#import tkinter.ttk as TTK #Notebook pour onglet
 
import random
########################################################
########## Liste et Variable Globales  #################
########################################################
 
 
 
L = ['<-','->',0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,'<=','=>','<x']
 
W=["W4","W6","W9","W12","W18","W37","V18","V37",""]
 
 
 
 
 
 
 
 
 
global CPT_choisir
global Identation_choisir
global Identation_effacement
CPT_choisir = []
Identation_choisir = 0
Identation_effacement = 0
 
 
 
 
 
#############################################################
#############Liste Utilisée dans FONCTIONS  #################
#############################################################
 
 
 
ListeEntrePerma=[]
Inverser_ListeEntrePerma=[]
Legende_Tableau=[]
Inverser_Legende_Tableau=[]
N_Tableau_1=[]
P_Tableau_1=[]
 
#################################################################################
 
def construction_PT1(P_Tableau_1,Fenetre):
 
 
 
    Cadre = Frame(Fenetre, bg="gainsboro")
    Cadre.place(x = 7, y = 120, width=1350, height=55) # Donne emplacement mesure (alors que impossible avec Cadre.config)
    # Construit Tableau dans Tkinter
    PT_Tableau_1 = Table(Cadre, dataframe=P_Tableau_1) #, showstatusbar=True, showtoolbar=True) #Statusbar endessous showtoolbar a droite
 
    PT_Tableau_1.cellwidth =  25 #Largeur de la cellule.
    PT_Tableau_1.maxcellwidth = 300
    PT_Tableau_1.mincellwidth = 20
    PT_Tableau_1.rowheight = 24 #hAUTEUR DE LA CELLULE
    PT_Tableau_1.thefont = ('Arial',12) # FONCTIONNE !
 
    #PT_Tableau_1.cellbackgr = 'white'  #Couleur des cellules du fond
    PT_Tableau_1.colheadercolor = 'gray50' #couleur Nom Colonne
    #########  Active pandastable ############################
    PT_Tableau_1.show()
    return PT_Tableau_1
 
global Cpt_F
global Cpt_D
 
Cpt_F = 0
Cpt_D = 0
xa = 0 #lance W
 
 
 
 
class Liste_Vide :
    def __init__(self, colonne):
        self.colonne = colonne
 
    def creation(self):
        liste_vide = []
        liste_vide = self.colonne*[0]
 
        return liste_vide
 
 
class Creation_tableau :
    def __init__(self, Ligne, Colonne):
        self.Ligne = Ligne
        self.Colonne = Colonne
    def creation(self):
        print("creation")
        T_vide2 = []
        T_vide2 = self.Ligne*[0]
        for nbre in range(self.Ligne):
            T_vide2[nbre]=self.Colonne*[0]
        return T_vide2
    def creation2(self):
        T_vide3 = []
        T_vide3 = self.Colonne*[0]
        for nbre in range(self.Colonne):
            T_vide3[nbre]=self.Ligne*[0]
        return T_vide3
    def convertir(self, tableau_liste):
        N_Tableau_Vierge = np.array(tableau_liste)
        return N_Tableau_Vierge
 
 
    def convertir2(self, tableau_numpy):
        listage1 = []
        for nbre in range(1,self.Ligne+1):
            listage1.append(str(nbre))
        listage2 = []
        for nbre in range(1,self.Colonne+1):
            listage2.append(str(nbre))
        row_indices = listage1
        column_names = listage2
        Pd_Tableau_Vierge = pd.DataFrame(tableau_numpy, index=row_indices, columns=column_names)
        return Pd_Tableau_Vierge
    def convertir3(self, tableau_pandas, x1, y1, width1, height1,Fenetre):
        Cadre_T_SQC6 = Frame(Fenetre, bg="gainsboro")
        Cadre_T_SQC6.place(x = x1, y = y1, width=width1, height=height1)
        PT_Tableau_Vierge_Sixain = Table(Cadre_T_SQC6, dataframe= tableau_pandas)
        PT_Tableau_Vierge_Sixain.cellwidth =  25
        PT_Tableau_Vierge_Sixain.maxcellwidth = 300
        PT_Tableau_Vierge_Sixain.mincellwidth = 20
        PT_Tableau_Vierge_Sixain.rowheight = 15
        PT_Tableau_Vierge_Sixain.thefont = ('Arial',9) # FONCTIONNE !
        #PT_Tableau_Vierge_Sixain.cellbackgr = 'white'  #Couleur des cellules du fond
        PT_Tableau_Vierge_Sixain.colheadercolor = 'gray50' #couleur Nom Colonne
 
        PT_Tableau_Vierge_Sixain.show()
        return PT_Tableau_Vierge_Sixain
 
class encodage :
    def __init__(self, a, b, c, tableau_W, tableau_W_B,ListeEntrePerma,winkel):
        self.a = a
        self.b = b
        self.c = c
        self.tableau_W = tableau_W
        self.tableau_W_B = tableau_W_B
        self.ListeEntrePerma = ListeEntrePerma
        self.winkel = winkel
    def permanence(self):
        self.ListeEntrePerma.append(self.a)
        Identation_choisir=len(self.ListeEntrePerma)
        Inverser_ListeEntrePerma.insert(0,self.a)
 
        Legende_Tableau.append(Identation_choisir)
        Inverser_Legende_Tableau.insert(0,Identation_choisir)
        return Inverser_ListeEntrePerma
 
    def encode(self, IL):  # a donne touche, b donne ligne tableau, c donne colonne tabelau
 
 
##########################################################################################
 
        N_Tableau_1 = np.array(IL)
        P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Inverser_Legende_Tableau)
        construction_PT1(P_Tableau_1,Fenetre)
        return P_Tableau_1
        #liste_de_liste_test=[[],[],[],[]]
 
 
 
 
 
 
    def encode2(self):
 
        #global l_Coordonée_Ligne_F
        #global l_Coordonée_Colonne_F
        test_compteur = 0
        l_Vide_a = Liste_Vide(self.b)
        l_Vide_b = Liste_Vide(self.c)
        l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
        l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
        print("l_Coordonée_Colonne_F",l_Coordonée_Colonne_F)
        print("l_Coordonée_Ligne_F",l_Coordonée_Ligne_F)
        global tableau_Vide
        tableau_Vide = Creation_tableau(4, 25)
        global tableau_W4
        self.tableau_W = tableau_Vide.creation()
        #liste_de_liste_test[3]=tableau_Vide.creation()
        #print(liste_de_liste_test[3])
        self.tableau_W_B = tableau_Vide.creation()
 
        bon_Ordre_Affichage = self.ListeEntrePerma
        print("bon_Ordre_Affichage",bon_Ordre_Affichage)
 
 
        for qtiemeF,recupF in enumerate(bon_Ordre_Affichage):
            print("qtiemeF",qtiemeF)
            print("bon_Ordre_Affichage",bon_Ordre_Affichage)
            test_compteur += 1
            print("test_compteur",test_compteur)
 
            arrondi_e = ceil(recupF/9)
            print("recupF",recupF)
            print("arrondi_e",arrondi_e)
 
            d_EntreePermaF = arrondi_e - 1
            #global l_Coordonée_Ligne_F
            #global l_Coordonée_Colonne_F
            indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
            indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
            # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
            #global tableau_W
            #global tableau_W_B
            self.tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
            self.tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
            #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
            #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
            # Compteur.
 
 
            l_Coordonée_Ligne_F[d_EntreePermaF] += 1
            l_Coordonée_Colonne_F[indiqueColonneF] +=  1
            print("l_Coordonée_Ligne_F[d_EntreePermaF]",l_Coordonée_Ligne_F[d_EntreePermaF])
            print("l_Coordonée_Colonne_F[indiqueColonneF]",l_Coordonée_Colonne_F[indiqueColonneF])
            print("l_Coordonée_Ligne_F",l_Coordonée_Ligne_F)
            print("l_Coordonée_Colonne_F",l_Coordonée_Colonne_F)
            # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
            IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
            IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
 
            #Crèe Tableau Numpy Pandas PTable
            #global n_tableau_W
            #global n_tableau_W_B
            #global p_tableau_W
            #global p_tableau_W_B
            #global pt_tableau_W
            #global pt_tableau_W_B
            #global tableau_Vide
            n_tableau_W = tableau_Vide.convertir(self.tableau_W)
            n_tableau_W_B = tableau_Vide.convertir(self.tableau_W_B)
            p_tableau_W = tableau_Vide.convertir2(n_tableau_W)
            p_tableau_W_B = tableau_Vide.convertir2(n_tableau_W_B)
            pt_tableau_W = tableau_Vide.convertir3(p_tableau_W,7,220,650,100,Fenetre)
            pt_tableau_W_B = tableau_Vide.convertir3(p_tableau_W_B,7,420,650,100,Fenetre)
            #return p_tableau_W, p_tableau_W_B
 
 
            print("bon_Ordre_Affichage",bon_Ordre_Affichage)
 
            print("recupF",recupF)
            if recupF != 0:
                #arrondi_e = 0
            #else :
                arrondi_e = ceil(recupF/9)
                print("recupF",recupF)
                print("arrondi_e",arrondi_e)
 
                d_EntreePermaF = arrondi_e - 1
                #global l_Coordonée_Ligne_F
                #global l_Coordonée_Colonne_F
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
                #global tableau_W
                #global tableau_W_B
                self.tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
                self.tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
 
                test_compteur += 1
                print("test_compteur",test_compteur)
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
                print("l_Coordonée_Ligne_F[d_EntreePermaF]",l_Coordonée_Ligne_F[d_EntreePermaF])
                print("l_Coordonée_Colonne_F[indiqueColonneF]",l_Coordonée_Colonne_F[indiqueColonneF])
                print("l_Coordonée_Ligne_F",l_Coordonée_Ligne_F)
                print("l_Coordonée_Colonne_F",l_Coordonée_Colonne_F)
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
 
                #Crèe Tableau Numpy Pandas PTable
                #global n_tableau_W
                #global n_tableau_W_B
                #global p_tableau_W
                #global p_tableau_W_B
                #global pt_tableau_W
                #global pt_tableau_W_B
                #global tableau_Vide
                n_tableau_W = tableau_Vide.convertir(self.tableau_W)
                n_tableau_W_B = tableau_Vide.convertir(self.tableau_W_B)
                p_tableau_W = tableau_Vide.convertir2(n_tableau_W)
                p_tableau_W_B = tableau_Vide.convertir2(n_tableau_W_B)
                pt_tableau_W = tableau_Vide.convertir3(p_tableau_W,7,220,650,100,Fenetre)
                pt_tableau_W_B = tableau_Vide.convertir3(p_tableau_W_B,7,420,650,100,Fenetre)
                return p_tableau_W, p_tableau_W_B
 
 
 
def choisir(x):
    L = ['<-','->',0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,'<=','=>','<x']
    global xb
 
    print(xb)
    global Identation_effacement
 
    global Affichage_Legende
    global Affichage_Liste
    global Cpt_F
    global Cpt_D
 
    if W[xb]=="W4":
        print("Choisis W4")
 
 
        if (str(L[x]).isdigit()):
 
            Test = encodage(L[x],4,25,0,0,ListeEntrePerma,W[xb])
            Permanence = Test.permanence()
            print("Permanence",Permanence)
            BOA=Test.encode(Permanence)
            print("BOA",BOA)
            BOA2=Test.encode2()
 
            print("BOA2",BOA2)
 
 
 
 
 
            #return ListeEntrePerma
 
        elif L[x]=="<x":
            del Legende_Tableau[-1]
            del ListeEntrePerma[-1]
            del Inverser_Legende_Tableau[0]
            del Inverser_ListeEntrePerma[0]
 
            N_Tableau_1 = np.array(Inverser_ListeEntrePerma)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Inverser_Legende_Tableau)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(4)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(4, 25)
            tableau_W = tableau_Vide.creation()
            tableau_W_B = tableau_Vide.creation()
 
            bon_Ordre_Affichage = ListeEntrePerma
            for qtiemeF,recupF in enumerate(bon_Ordre_Affichage):
                if recupF == 0:
                    arrondi_e = 0
                else :
 
                    arrondi_e = ceil(recupF/9)
                    d_EntreePermaF = arrondi_e - 1
                    indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                    indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                    # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
                    tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                    tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
 
                    #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                    #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                    # Compteur.
                    test_compteur += 1
                    print("test_compteur",test_compteur)
                    l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                    l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                    # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                    IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                    IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                    n_tableau_W = tableau_Vide.convertir(tableau_W)
                    n_tableau_W_B = tableau_Vide.convertir(tableau_W_B)
                    p_tableau_W = tableau_Vide.convertir2(n_tableau_W)
                    p_tableau_W_B = tableau_Vide.convertir2(n_tableau_W_B)
                    pt_tableau_W = tableau_Vide.convertir3(p_tableau_W,7,220,650,100,Fenetre)
                    pt_tableau_W_B = tableau_Vide.convertir3(p_tableau_W_B,7,420,650,100,Fenetre)
 
            #return ListeEntrePerma
            #return ListeEntrePerma
 
        elif L[x] == "=>":
            Maxi_Legende = len(Legende_Tableau)
            Maxi_Liste = len(ListeEntrePerma)
            Fin = Maxi_Liste - Cpt_F
 
            Cpt_D = Cpt_D + 1
            Affichage_Legende = Inverser_Legende_Tableau[Cpt_D:Fin]
            Affichage_Liste = Inverser_ListeEntrePerma[Cpt_D:Fin]
            Decal_ListeEntrePerma = list(reversed(Affichage_Liste)) # A retourné
            N_Tableau_1 = np.array(Affichage_Liste)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Affichage_Legende)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(4)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(4, 25)
            tableau_W = tableau_Vide.creation()
            tableau_W_B = tableau_Vide.creation()
 
            for qtiemeF,recupF in enumerate(Affichage_Liste):
                arrondi_e = ceil(recupF/9)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
                tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
 
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                n_tableau_W = tableau_Vide.convertir(tableau_W)
                n_tableau_W_B = tableau_Vide.convertir(tableau_W_B)
                p_tableau_W = tableau_Vide.convertir2(n_tableau_W)
                p_tableau_W_B = tableau_Vide.convertir2(n_tableau_W_B)
                print(p_tableau_W)
                pt_tableau_W = tableau_Vide.convertir3(p_tableau_W,7,220,650,100,Fenetre)
                pt_tableau_W_B = tableau_Vide.convertir3(p_tableau_W_B,7,420,650,100,Fenetre)
 
 
        elif L[x] == "<=":
            Maxi_Legende = len(Legende_Tableau)
            Maxi_Liste = len(ListeEntrePerma)
            Fin = Maxi_Liste - Cpt_F
            Cpt_D = Cpt_D - 1
            Affichage_Legende = Inverser_Legende_Tableau[Cpt_D:Fin]
            Affichage_Liste = Inverser_ListeEntrePerma[Cpt_D:Fin]
            Decal_ListeEntrePerma = list(reversed(Affichage_Liste)) # A retourné
            N_Tableau_1 = np.array(Affichage_Liste)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Affichage_Legende)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(4)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(4, 25)
            tableau_W = tableau_Vide.creation()
            tableau_W_B = tableau_Vide.creation()
 
            for qtiemeF,recupF in enumerate(Affichage_Liste):
                arrondi_e = ceil(recupF/9)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
                tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
 
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                n_tableau_W = tableau_Vide.convertir(tableau_W)
                n_tableau_W_B = tableau_Vide.convertir(tableau_W_B)
                p_tableau_W = tableau_Vide.convertir2(n_tableau_W)
                p_tableau_W_B = tableau_Vide.convertir2(n_tableau_W_B)
                print(p_tableau_W)
                pt_tableau_W = tableau_Vide.convertir3(p_tableau_W,7,220,650,100,Fenetre)
                pt_tableau_W_B = tableau_Vide.convertir3(p_tableau_W_B,7,420,650,100,Fenetre)
 
        elif L[x] == "<-":
            Maxi_Legende = len(Legende_Tableau)
            Maxi_Liste = len(ListeEntrePerma)
 
            Cpt_F = Cpt_F + 1
            Fin = Maxi_Liste - Cpt_F
            Affichage_Legende = Inverser_Legende_Tableau[Cpt_D:Fin]
            Affichage_Liste = Inverser_ListeEntrePerma[Cpt_D:Fin]
            Decal_ListeEntrePerma = list(reversed(Affichage_Liste)) # A retourné
            N_Tableau_1 = np.array(Affichage_Liste)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Affichage_Legende)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(4)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(4, 25)
            tableau_W = tableau_Vide.creation()
            tableau_W_B = tableau_Vide.creation()
 
            for qtiemeF,recupF in enumerate(Affichage_Liste):
                arrondi_e = ceil(recupF/9)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
                tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
 
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                n_tableau_W = tableau_Vide.convertir(tableau_W)
                n_tableau_W_B = tableau_Vide.convertir(tableau_W_B)
                p_tableau_W = tableau_Vide.convertir2(n_tableau_W)
                p_tableau_W_B = tableau_Vide.convertir2(n_tableau_W_B)
                print(p_tableau_W)
                pt_tableau_W = tableau_Vide.convertir3(p_tableau_W,7,220,650,100,Fenetre)
                pt_tableau_W_B = tableau_Vide.convertir3(p_tableau_W_B,7,420,650,100,Fenetre)
 
        elif L[x] == "->":
            Maxi_Legende = len(Legende_Tableau)
            Maxi_Liste = len(ListeEntrePerma)
            Cpt_F = Cpt_F - 1
            Fin = Maxi_Liste - Cpt_F
            Affichage_Legende = Inverser_Legende_Tableau[Cpt_D:Fin]
            Affichage_Liste = Inverser_ListeEntrePerma[Cpt_D:Fin]
            Decal_ListeEntrePerma = list(reversed(Affichage_Liste)) # A retourné
            N_Tableau_1 = np.array(Affichage_Liste)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Affichage_Legende)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(4)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(4, 25)
            tableau_W = tableau_Vide.creation()
            tableau_W_B = tableau_Vide.creation()
 
            for qtiemeF,recupF in enumerate(Affichage_Liste):
                arrondi_e = ceil(recupF/9)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
                tableau_W_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                tableau_W[indiqueLigneF][indiqueColonneF] = arrondi_e
 
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                n_tableau_W4 = tableau_Vide.convertir(tableau_W4)
                n_tableau_W4_B = tableau_Vide.convertir(tableau_W4_B)
                p_tableau_W4 = tableau_Vide.convertir2(n_tableau_W4)
                p_tableau_W4_B = tableau_Vide.convertir2(n_tableau_W4_B)
                print(p_tableau_W4)
                pt_tableau_W4 = tableau_Vide.convertir3(p_tableau_W4,7,220,650,100,Fenetre)
                pt_tableau_W4_B = tableau_Vide.convertir3(p_tableau_W4_B,7,420,650,100,Fenetre)
 
 
#####################################################################################################################################################
################################## CHOIX DE W6    ###################################################################################################
#####################################################################################################################################################
 
    elif W[xb]=="W6":
 
        print("Choisis W6")
 
 
        if (str(L[x]).isdigit()):
 
            ListeEntrePerma.append(L[x])
            Identation_choisir=len(ListeEntrePerma)
            Inverser_ListeEntrePerma.insert(0,L[x])
 
            Legende_Tableau.append(Identation_choisir)
            Inverser_Legende_Tableau.insert(0,Identation_choisir)
 
 
            N_Tableau_1 = np.array(Inverser_ListeEntrePerma)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Inverser_Legende_Tableau)
            construction_PT1(P_Tableau_1,Fenetre)
 
            liste_de_liste_test=[[],[],[],[]]
            l_Vide_a = Liste_Vide(6)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
 
 
            tableau_Vide = Creation_tableau(6, 25)
            tableau_W6 = tableau_Vide.creation()
            tableau_W6_B = tableau_Vide.creation()
 
            bon_Ordre_Affichage = ListeEntrePerma
            for qtiemeF,recupF in enumerate(bon_Ordre_Affichage):
                arrondi_e = ceil(recupF/6)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
 
                tableau_W6[indiqueLigneF][indiqueColonneF] = arrondi_e
                tableau_W6_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
 
                #Crèe Tableau Numpy Pandas PTable
                n_tableau_W6 = tableau_Vide.convertir(tableau_W6)
                n_tableau_W6_B = tableau_Vide.convertir(tableau_W6_B)
                p_tableau_W6 = tableau_Vide.convertir2(n_tableau_W6)
                p_tableau_W6_B = tableau_Vide.convertir2(n_tableau_W6_B)
                pt_tableau_W6 = tableau_Vide.convertir3(p_tableau_W6,7,220,650,130,Fenetre)
                pt_tableau_W6_B = tableau_Vide.convertir3(p_tableau_W6_B,7,420,650,130,Fenetre)
 
            #return ListeEntrePerma
        elif L[x]=="<x":
            del Legende_Tableau[-1]
            del ListeEntrePerma[-1]
            del Inverser_Legende_Tableau[0]
            del Inverser_ListeEntrePerma[0]
 
            N_Tableau_1 = np.array(Inverser_ListeEntrePerma)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Inverser_Legende_Tableau)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(6)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(6, 25)
            tableau_W6 = tableau_Vide.creation()
            tableau_W6_B = tableau_Vide.creation()
 
            bon_Ordre_Affichage = ListeEntrePerma
 
            for qtiemeF,recupF in enumerate(bon_Ordre_Affichage):
                arrondi_e = ceil(recupF/6)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
 
                tableau_W6[indiqueLigneF][indiqueColonneF] = arrondi_e
                tableau_W6_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
 
                #Crèe Tableau Numpy Pandas PTable
                n_tableau_W6 = tableau_Vide.convertir(tableau_W6)
                n_tableau_W6_B = tableau_Vide.convertir(tableau_W6_B)
                p_tableau_W6 = tableau_Vide.convertir2(n_tableau_W6)
                p_tableau_W6_B = tableau_Vide.convertir2(n_tableau_W6_B)
                pt_tableau_W6 = tableau_Vide.convertir3(p_tableau_W6,7,220,650,130,Fenetre)
                pt_tableau_W6_B = tableau_Vide.convertir3(p_tableau_W6_B,7,420,650,130,Fenetre)
 
 
 
 
 
 
#####################################################################################################################################################
################################## CHOIX DE W9    ###################################################################################################
#####################################################################################################################################################
 
    elif W[xb]=="W9":
 
        print("Choisis W9")
 
 
        if (str(L[x]).isdigit()):
 
            ListeEntrePerma.append(L[x])
            Identation_choisir=len(ListeEntrePerma)
            Inverser_ListeEntrePerma.insert(0,L[x])
 
            Legende_Tableau.append(Identation_choisir)
            Inverser_Legende_Tableau.insert(0,Identation_choisir)
 
 
            N_Tableau_1 = np.array(Inverser_ListeEntrePerma)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Inverser_Legende_Tableau)
            construction_PT1(P_Tableau_1,Fenetre)
 
            liste_de_liste_test=[[],[],[],[]]
            l_Vide_a = Liste_Vide(9)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
 
 
            tableau_Vide = Creation_tableau(9, 25)
            tableau_W9 = tableau_Vide.creation()
            tableau_W9_B = tableau_Vide.creation()
 
            bon_Ordre_Affichage = ListeEntrePerma
            for qtiemeF,recupF in enumerate(bon_Ordre_Affichage):
                arrondi_e = ceil(recupF/4)
                print(arrondi_e)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
 
                tableau_W9[indiqueLigneF][indiqueColonneF] = arrondi_e
                tableau_W9_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
 
                #Crèe Tableau Numpy Pandas PTable
                n_tableau_W9 = tableau_Vide.convertir(tableau_W9)
                n_tableau_W9_B = tableau_Vide.convertir(tableau_W9_B)
                p_tableau_W9 = tableau_Vide.convertir2(n_tableau_W9)
                p_tableau_W9_B = tableau_Vide.convertir2(n_tableau_W9_B)
                pt_tableau_W9 = tableau_Vide.convertir3(p_tableau_W9,7,220,650,180,Fenetre)
                pt_tableau_W9_B = tableau_Vide.convertir3(p_tableau_W9_B,7,420,650,180,Fenetre)
 
            #return ListeEntrePerma
        elif L[x]=="<x":
            del Legende_Tableau[-1]
            del ListeEntrePerma[-1]
            del Inverser_Legende_Tableau[0]
            del Inverser_ListeEntrePerma[0]
 
            N_Tableau_1 = np.array(Inverser_ListeEntrePerma)
            P_Tableau_1 = pd.DataFrame([N_Tableau_1], columns = Inverser_Legende_Tableau)
            construction_PT1(P_Tableau_1,Fenetre)
 
            l_Vide_a = Liste_Vide(9)
            l_Vide_b = Liste_Vide(25)
            l_Coordonée_Ligne_F = l_Vide_a.creation() #Donnera Qteme Liste
            l_Coordonée_Colonne_F = l_Vide_b.creation() #Donnera Qtieme Element
            tableau_Vide = Creation_tableau(9, 25)
            tableau_W9 = tableau_Vide.creation()
            tableau_W9_B = tableau_Vide.creation()
 
            bon_Ordre_Affichage = ListeEntrePerma
 
            for qtiemeF,recupF in enumerate(bon_Ordre_Affichage):
                arrondi_e = ceil(recupF/4)
                d_EntreePermaF = arrondi_e - 1
                indiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                indiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
                # TABLEAU SEQUENTIFL CLASSIQUE ET NUMPY
 
                tableau_W6[indiqueLigneF][indiqueColonneF] = arrondi_e
                tableau_W6_B[indiqueLigneF][indiqueColonneF] = qtiemeF + 1
                #N_T_Perma_F[IndiqueLigneF][IndiqueColonneF] = ArrondiE
                #N_T_Enumeration_F[IndiqueLigneF][IndiqueColonneF] = QtiemeF + 1
 
                # Compteur.
                l_Coordonée_Ligne_F[d_EntreePermaF] += 1
                l_Coordonée_Colonne_F[indiqueColonneF] +=  1
 
                # Prend valeur pour tour suivant, car devait commencer a 0 premier tour de boucle.
                IndiqueColonneF = l_Coordonée_Ligne_F[d_EntreePermaF]
                IndiqueLigneF = l_Coordonée_Colonne_F[indiqueColonneF]
 
                #Crèe Tableau Numpy Pandas PTable
                n_tableau_W9 = tableau_Vide.convertir(tableau_W9)
                n_tableau_W9_B = tableau_Vide.convertir(tableau_W9_B)
                p_tableau_W9 = tableau_Vide.convertir2(n_tableau_W9)
                p_tableau_W9_B = tableau_Vide.convertir2(n_tableau_W9_B)
                pt_tableau_W9 = tableau_Vide.convertir3(p_tableau_W9,7,220,650,130,Fenetre)
                pt_tableau_W9_B = tableau_Vide.convertir3(p_tableau_W9_B,7,420,650,130,Fenetre)
 
def choisirb(xa):
    global xb
 
 
    print("test")
    if  W[xa] == "W37" :
        print("37")
 
    elif W[xa] == "W18":
        print("w18")
    elif W[xa] == "W9":
        print("W9")
        #global xb
        xb = 2
 
        #return 2
    elif W[xa] == "W6":
        print("W6")
 
        xb=1
        #return 1
 
    elif W[xa] == "V18":
        print("w18")
    elif W[xa] == "V37":
        print("V37")
    elif W[xa] == "V18":
        print("V18")
    elif W[xa] == "":
        print("W18")
    elif W[xa] == "W4":
 
        xb = 0
 
        #return 0
 
 
 
 
 
############################################
############ fenêtre graphique   ###########
############################################
Fenetre=Tk()
Fenetre.geometry('1400x1350')
Fenetre.title('PandasTable Liaison')
 
 
 
 
###############################################################
###### espace d'affichage du clavier numerique  ##############
#############################################################
 
Clavier=Frame(Fenetre, bg="#ffffff")
Clavier.place(x = 7, y = 7) #Positionne ou je veux.
Numero=[k for k in range(1,43)]
#def test(x=k):
#    choisir(x,ListeEntrePerma,Inverser_ListeEntrePerma,Legende_Tableau,Inverser_Legende_Tableau,N_Tableau_1,P_Tableau_1,Fenetre)
 
Dbt = 3
for Ligne in range(3):  # CLAVIER NUMERIQUE
    Dbt = Dbt - 1
    k = Dbt
    for Colone in range(14):
        Couleur = "gray99"
        Taille = ("Courier", 10)
 
        #red 1,3,5,7,9,12,14,16,18,21,23,25,27,30,32,34,36
        if L[k] == "<=" or L[k] == "=>" or L[k] == "<x":
            Couleur = "gainsboro"
        if L[k] == 0:
            Couleur = "green2"
        if L[k] == 1 or L[k] == 3 or L[k] == 5 or L[k] == 7 or L[k] == 9 or L[k] == 12 or L[k] == 14 or L[k] == 16 or L[k] == 18 or L[k] == 21 or L[k] == 23 or L[k] == 25 or L[k] == 27 or L[k] == 30 or L[k] == 32 or L[k] == 34 or L[k] == 36:
            Couleur = "red"
        if k>1 and k < 12:
            Taille = ("Courier", 13)
 
        Numero[k]=Button(Clavier,text=str(L[k]),font=Taille,bg=Couleur,command=lambda x=k: choisir(x))
        #Numero[k]=Button(Clavier,text=str(L[k]),command=lambda x=k: choisir(x))
        Numero[k].grid(row=Ligne,column=Colone,sticky='ew''ns') # Sticky ew pour ealrgir moins de 10
 
        k = k + 3
Recup_ListeEntrePerma = []
 
#Recup_ListeEntrePerma = choisir(x,ListeEntrePerma,Inverser_ListeEntrePerma,Legende_Tableau,Inverser_Legende_Tableau,N_Tableau_1,P_Tableau_1,Fenetre)
 
 
#################################################
# espace d'affichage du clavier W  ##############
#################################################
 
Clavier2=Frame(Fenetre, bg="white")
Clavier2.place(x = 800, y = 7) #Positionne ou je veux. #Positionne ou je veux.
 
x=38
 
 
ka=0
Numero=[0 for k in range(9)]
Dbt = 3
 
for Ligne in range(3): # CLAVIER DE W
 
    for Colone in range(3):
        Couleur = "gainsboro"
        Taille = ("Courier", 13)
 
        def buttonPress(xa):
 
            choisirb(xa)
            print(xa)
            choisir(38)
            choisir(41)
 
        Numero[ka]=Button(Clavier2,text=str(W[ka]),font=("Courier", 13),bg="gainsboro",command=lambda xa=ka: [choisirb(xa)]) #,choisir(39),choisir(41)])
 
 
        Numero[ka].grid(row=Ligne,column=Colone,sticky='ew')# Sticky ew pour ealrgir moins de 10
 
        ka = ka + 1
xb = choisirb(xa)
 
Fenetre.mainloop()