python

CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests – ArnauCode – Blog

Lien vers l'article. Lire la suite ...

GitHub – chrizator/netattack: Python script to scan and attack wireless networks

github.com netattack Lire la suite ...

suite de fibonacci

a, b, c = 1, 1, 1 while c < 15:         a,b,c = b, b+a, (c + 1)         print b Lire la suite ...

liste de carré

a = 0 while a < 7: a = a +1 print (a , a **2, a**3)   http://www.codeskulptor.org/   Lire la suite ...

pair impair

a = -1.58745 if ( a % 2 == 0): print ("le nombre est pair") else : print ("le nombre est impair") Lire la suite ...

if, elif, else, pair impair

a = 0 if ( a >  0 ): print (" a est positif") elif  ( a < 0 ): print (" a est negatif") else: print ("a est nul") Lire la suite ...

Python ressources

Python ressources www.inforef.be/swi/download/apprendre_python3_5.pdf Python - Haypo Plongez au coeur de Python Chandler Project - Welcome Lire la suite ...

Python : calculator

symbole effet exemple + addition / addition 6+4 == 10 - soustraction / subtraction 6-4 == 2 * multiplication / multiplication 6*4 == 24 / division / division 6/4 == 1.5 ** élévation à la puissance / exponentiation 12**2 == 144 // division entière / integer division 6//4 == 1  % reste de la division… Lire la suite ...

Python : ressource

Python est un langage de programmation source : www.python.rog wikipedia : http://fr.wikipedia.org/wiki/Python_(langage) Deux versions existent, la nouvelle version 3.o abolit la compatibilité avec la série des versions 2.x. Python peut être installé sous n'importe quel OS. La version Mac OS demande une couche de Tcl/Tk.   Lire la suite ...