subject
Computers and Technology, 14.11.2019 22:31 bheam12

Python:
the password must have at least 8 characters with at least one lowercase, one uppercase and one digit character. the program should repetitively ask user for a password till the entered password meets the specifications. then the program should ask the user to confirm the password; if it could not be confirmed then the whole process should start from the beginning.

# this program to set a password.

# this function returns true if the string s has

# no lowercase character otherwise returns false.

def nolowercase(s) :

upper_s = s. upper()

if s == upper_s :

return true

else :

return false

# this function returns true if the string s has

# no uppercase character otherwise returns false.

def nouppercase(s) :

lower_s = s. lower()

if s == lower_s :

return true

else :

return false

# this function returns true if the string s has

# no digit character otherwise returns false.

def nodigit(s) :

if s. count("0") > 0 :

return false

elif s. count("1") > 0 :

return false

elif s. count("2") > 0 :

return false

elif s. count("3") > 0 :

return false

elif s. count("4") > 0 :

return false

elif s. count("5") > 0 :

return false

elif s. count("6") > 0 :

return false

elif s. count("7") > 0 :

return false

elif s. count("8") > 0 :

return false

elif s. count("9") > 0 :

return false

else :

return true

# program to set a password.

# the password must have more than 8 characters

# with at least one uppercase, at least one lowercase

# and at least one digit character.

def main() :

print("this program will set your password.")

password_not_set = true

while password_not_set :

password = input("enter a password: ")

while : # complete the condition

print("password not allowed.")

print("must be longer than 8 characters with")

print("at least one lowercase, one uppercase and one digit.\n")

password = input("enter another password: ")

password_confirm = input("reenter to confirm the password.")

if : # complete the condition

print("password did not match, set another password.")

else :

# complete

print("your password has been set.")

main()

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 19:30
Why is it a good idea to leave an interview being courteous and polite?
Answers: 1
question
Computers and Technology, 21.06.2019 22:50
Before you enter an intersection on a green light make sure
Answers: 2
question
Computers and Technology, 23.06.2019 14:00
Need ! will choose brainliest! discuss the role of abstraction in the history of computer software.
Answers: 1
question
Computers and Technology, 23.06.2019 18:50
What is transmission control protocol/internet protocol (tcp/ip)? software that prevents direct communication between a sending and receiving computer and is used to monitor packets for security reasons a standard that specifies the format of data as well as the rules to be followed during transmission a simple network protocol that allows the transfer of files between two computers on the internet a standard internet protocol that provides the technical foundation for the public internet as well as for large numbers of private networks
Answers: 2
You know the right answer?
Python:
the password must have at least 8 characters with at least one lowercase, one upperc...
Questions
question
Mathematics, 14.02.2020 06:36
question
Mathematics, 14.02.2020 06:36
question
Mathematics, 14.02.2020 06:37
Questions on the website: 13722367