• STATISTIQUES
  • Il y a eu un total de 0 membres et 39091 visiteurs sur le site dans les dernières 24h pour un total de 39 091 personnes!
    Membres: 2 605
    Discussions: 3 579
    Messages: 32 816
    Tutoriels: 78
    Téléchargements: 38
    Sites dans l'annuaire: 58


  • ANNUAIRE
  • [FR] WeChall
    Audio: 3, Coding: 11, Cracking: 9, Crypto: 18, Encoding: 11, Exploit: 44, Forensics: 1, Fun: 6, HTTP: 6, Image: 8, Java:...
    Challenges
    [EN] Sabre Films
    Site de challenge présenté sous la forme d'une quête. Vous êtes un détective et devrez résoudre d...
    Challenges
    [FR] apprendre-a-manipuler
    Site d'apprentissage de la manipulation d'autrui.
    Hacking
    [EN] xda-developers
    Très bon site pour les gros bidouilleurs de smartphone de windows à androïd et de Apple jusqu'...
    Phreaking
    [EN] Net Force
    Javascript: 9, Java Applets: 6, Cryptography: 16, Exploits: 7, Cracking: 14, Programming: 13, Internet: 15, Steganograph...
    Challenges
    [FR] Microcontest
    Cryptographie: 7, Mathématiques: 8, Image Son Vidéo: 5, Intelligence artificielle: 3, Réseau: 2, Divers: 7, Phy...
    Challenges
    [EN] Listbrain Version 3
    Site proposant 66 challenges présentés dans une liste mélangée.
    Challenges

  • DONATION
  • Si vous avez trouvé ce site internet utile, nous vous invitons à nous faire un don du montant de votre choix via Paypal. Ce don servira à financer notre hébergement.

    MERCI!




Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5
Nos beugs
12-02-2013, 14h23
Message : #2
notfound Hors ligne
#!/usr/bin/env bash
*



Messages : 687
Sujets : 47
Points: 271
Inscription : Sep 2012
RE: Nos beugs
(12-02-2013, 13h56)khaled a écrit : Code python (valide 2.7 et 3.2)
Code PYTHON :

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import time,threading

def enfant():
    time.sleep(3)
    print("Je suis l'enfant")

threading.Thread(None, enfant(), None, (), {}).start()#fonction non bloquante
print("Je suis le père")
 


La sortie attendue est :
Citation :Je suis le père
Je suis l'enfant
Et pourtant c'est l'inverse qui se produit... pourquoi??

j'en rajouterais quand je m'en souviendrais ou affronterais d'autres :/


Tu appelles ton thread avant.
Personnellement, pour avoir la réponse attendue, j'ai juste fait :

Code PYTHON :

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import time,threading

def enfant():
    time.sleep(3)
    print("Je suis l'enfant")

print("Je suis le père")
threading.Thread(None, enfant(), None, (), {}).start()#fonction non bloquante
 


Code BASH :

root@notfound:~/TEST$ python python_kha.py
Je suis le père
Je suis l'enfant


CQFD
+1 (0) -1 (0) Répondre


Messages dans ce sujet
Nos beugs - par InstinctHack - 12-02-2013, 13h56
RE: Nos beugs - par notfound - 12-02-2013, 14h23
RE: Nos beugs - par InstinctHack - 12-02-2013, 14h27
RE: Nos beugs - par Ark - 12-02-2013, 14h28
RE: Nos beugs - par supersnail - 12-02-2013, 14h31
RE: Nos beugs - par gruik - 12-02-2013, 21h49
RE: Nos beugs - par notfound - 12-02-2013, 14h31
RE: Nos beugs - par InstinctHack - 12-02-2013, 14h38
RE: Nos beugs - par supersnail - 12-02-2013, 15h06
RE: Nos beugs - par InstinctHack - 12-02-2013, 22h01
RE: Nos beugs - par gruik - 12-02-2013, 22h20
RE: Nos beugs - par InstinctHack - 12-02-2013, 22h23
RE: Nos beugs - par gruik - 12-02-2013, 22h27
RE: Nos beugs - par InstinctHack - 12-02-2013, 22h30
RE: Nos beugs - par supersnail - 12-02-2013, 23h09
RE: Nos beugs - par gruik - 13-02-2013, 15h20
RE: Nos beugs - par InstinctHack - 13-02-2013, 15h23
RE: Nos beugs - par notfound - 14-02-2013, 02h32

Atteindre :


Utilisateur(s) parcourant ce sujet : 7 visiteur(s)
N-PN
Accueil | Challenges | Tutoriels | Téléchargements | Forum | Retourner en haut