Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to make simple login in python

username = input(' enter your username: ')
if username == 'Put Your Username Here':#change this
   print("checking username")
   time.sleep(0.5)
   print("username is right") 
   password = input(' type your password: ')
   if password == 'Put Your Password Here':#change this
    time.sleep(0.5) 
   else:
    exit()
else:
 exit()    
Comment

login python code

username = input(' enter your username: ')
if username == 'Put Your Username Here':#change this
   print("checking username")
   time.sleep(0.5)
   print("username is right") 
   password = input(' type your password: ')
   if password == 'Put Your Password Here':#change this
    time.sleep(0.5) 
   else:
    exit()
else:
 exit()    
Comment

PREVIOUS NEXT
Code Example
Python :: importing modules in kv lang 
Python :: python ufeff character from file 
Python :: kroki - hello.dot 
Python :: open file rw python 
Python :: ignore transformers warning 
Python :: how to print a text in python 
Python :: pandas 3d tutorail pythoin 
Python :: write in file python 
Python :: Install pip and add virtual environment to the Python Kernel 
Python :: timeplanner-1 
Python :: how to print the text new line instead of n in jupyter notebook 
Python :: python set literal 
Python :: how to take integer input in python 
Python :: <ipython-input-31-da456dc89cda in <module 
Python :: python tri alphabetique 
Python :: django graphene without model 
Python :: search number is complete or no python 
Python :: actual python iterators 
Python :: Minimum Number of Operations to Move All Balls to Each Box in python used in function method 
Python :: python generator for reading and writing file 
Python :: python default summary statistics for all columns 
Python :: modbusfc03 python 
Python :: Random Remarks Example in python 
Python :: python continue outer loop 
Python :: temp python 
Python :: python vectorize 
Python :: render() django 
Python :: pyaudio 
Python :: python remove last 4 characters from string 
Python :: flask socketio send 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =