create log in python
logging.basicConfig(filename="logfilename.log", level=logging.INFO)
# Log Creation
logging.info('your text goes here')
logging.error('your text goes here')
logging.debug('your text goes here')
create log in python
logging.basicConfig(filename="logfilename.log", level=logging.INFO)
# Log Creation
logging.info('your text goes here')
logging.error('your text goes here')
logging.debug('your text goes here')
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()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us