DanieleVaraldo
Profilo di
Nome | DanieleVaraldo |
---|---|
Indirizzo email | n/a |
Messaggi | 6 |
-
- 2015-12-21 15:10:10
- Re: Salve a tutti, ho una domanda da fare
- Forum >> Programmazione Python >> Scripting
-
Traceback (most recent call last):
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 47, in <module>
start()
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 3, in start
user_set()
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 8, in user_set
pass_set()
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 13, in pass_set
type_User()
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 18, in type_User
if user == User:
NameError: global name 'User' is not defined
riesco a fare solo quando dice di impostare un Username e una password poi dopo quando chiede l'username esce l'errore
-
- 2015-12-20 22:42:46
- Re: Salve a tutti, ho una domanda da fare
- Forum >> Programmazione Python >> Scripting
- ah ok e che ho appena iniziato a studiare python quindi d'istinto ho fatto questo comunque non ho ben capito cosa intendi scusami, ho provato a fare una cosa del genere ma niente
def start(): print ("loading") user_set() def user_set(): global User user = raw_input("Set a Username here:") pass_set() def pass_set(): global Password password = raw_input("Set a Password here:") type_User() def type_User(): user = raw_input ("Username:") try: if user == User: type_password() else: print("Username wrong") print type_User() except ValueError: print "Username wrong" print type_User() def type_password(): password = raw_input ("Password") try: if password == Password: welcome() else: print ("password wrong") print type_password() except ValueError: print"password wrong" print type_password() def welcome(): print ("welcome "+user+"!") start()
-
- 2015-12-18 12:33:26
- Re: Salve a tutti, ho una domanda da fare
- Forum >> Programmazione Python >> Scripting
- ah si giusto scusami mi ero scordato di correggerle dato che inizialmente volevo scriverlo in python3
ora il codice l'ho cambiato un po'
ma mi resta ancora il dubbio di come devo codificare il fatto di poter impostare inizialmente un Username e una password come se ti stessi registrando ma senza che vengano salvate per sempre quindi ogni volta che avvii il programma devi reimpostarle
user = "12" password = "134" def start(): print ("loading") type_User() def type_User(): User = raw_input ("Username:") try: if User == user: type_password() else: print("Username wrong") print type_User() except ValueError: print "Username wrong" print type_User def type_password(): Password = raw_input ("Password") try: if Password == password: welcome() else: print ("password wrong") print type_password() except ValueError: print"password wrong" print type_password() def welcome(): print ("welcome "+user+"!") start()
--- Ultima modifica di DanieleVaraldo in data 2015-12-18 12:34:19 ---
-
- 2015-12-15 19:38:38
- Re: Salve a tutti, ho una domanda da fare
- Forum >> Programmazione Python >> Scripting
- per "non ci riesco" intendo che non saprei come scrivere il codice nel senso che vorrei prima che si potesse impostare un Username e una password ma facendo così noto che non funziona ecco l'errore di crash che mi ha dato
Traceback (most recent call last):
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 39, in <module>
start()
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 8, in start
type_User()
File "C:\Users\Asus\Desktop\Programmazione\Python\another key logger.py", line 10, in type_User
User = input ("Username:")
File "<string>", line 1, in <module>
NameError: name 'Daniele' is not defined
-
- 2015-12-14 10:42:35
- Re: Salve a tutti, ho una domanda da fare
- Forum >> Programmazione Python >> Scripting
- scusa non ho capito bene
no niente ho sistemato
--- Ultima modifica di DanieleVaraldo in data 2015-12-14 10:45:15 ---
-
- 2015-12-13 20:52:37
- Salve a tutti, ho una domanda da fare
- Forum >> Programmazione Python >> Scripting
- salve, sto imparando il linguaggio di python e per primo programmino volevo fare un semplice keylogger(che funziona ovviamente solo avviandolo) e volevo anche farci che potevi inizialmente impostare l'Username e la Password ma non ci riesco, ora vi scrivo il programma che ho fatto qui sotto grazie in anticipo:
def start(): print ("loading") user = input ("set your Username:") password = input ("set your password:") type_User() def type_User(): User = input ("Username:") if User == user: type_password() else: print("Username wrong") print type_user() def type_password(): Password = input ("Password") if Password == password: welcome() else: print ("password wrong") print type_password() def welcome(): print ("welcome "+user+"!") start()
--- Ultima modifica di DanieleVaraldo in data 2015-12-14 10:44:44 ---