Dichiarare una variabile che conterrà l' input dell'utente .
>>> , x = 0
2
Utilizzare la funzione " raw_input " per raccogliere dati dall'utente . La funzione prende un argomento di tipo stringa , che presenterà all'utente con un prompt (Fonte 1 ) :
>>> x = raw_input ( ' inserire un numero : ' ) immettere un numero : 5 >> ,> x'5 ' //string 5
3
Quando l'utente immette ingresso , Python accetta è come una stringa di caratteri . Per cambiare in un numero intero , utilizzare la funzione "int " (Fonte 1 ) :
>>> x = int ( raw_input ( ' inserire un numero : ' ) ) immettere un numero : 5 > ; >> x5 //numero intero 5
Programmazione © www.354353.com