Pix python

Solved
Soldat7632 -  
 Phil_1857 -

Hello,

I can't find the secret word of this python code, can you help me please?

words ='FORGES COFFRET CLAPET NOIRCIR FLORES ASTRILD CREPES POULPES HANSES POIGNET'

a = 0

b = len(words)

titi=''

for i in range(0, int(len(words)/2)):

    if (words[i]==' '):

        titi = titi + words[abs(a-b)]

    a = a + 2


4 answers

  1. yg_be Posted messages 23437 Registration date   Status Contributor Last intervention   Ambassador 1 588
     

    Hello,

    maybe adding this at the end of the code?

    print(titi)
    1
  2. Soldat7632
     

    Thank you very much, you're amazing. It worked.

    Have a great day, goodbye.

    0
  3. Diablo76 Posted messages 345 Registration date   Status Member Last intervention   140
     

    Hello,

    It's not complete, you are missing something to add by reading the statement:

    0
  4. Phil_1857
     

    Hello,

    "It worked." ... well no!

    If we don't follow the statement all the way through, it gives a weird word:

    NROLR

    If we apply all the instructions, we indeed find a valid word...

    0