How do i create a code for creating new username and passwordHow to merge two dictionaries in a single expression?How do I check if a list is empty?How do I check whether a file exists without exceptions?How can I safely create a nested directory?How do I sort a dictionary by value?How to make a chain of function decorators?How to make a flat list out of list of listsAdd new keys to a dictionary?How do I list all files of a directory?Way to create multiline comments in Python?
Of strange atmospheres - the survivable but unbreathable
How was Daenerys able to legitimise Gendry?
Must a warlock replace spells with new spells of exactly their Pact Magic spell slot level?
Navigating a quick return to previous employer
Is it legal to have an abortion in another state or abroad?
Can a tabaxi rogue with the Criminal background start with 8 skill proficiencies?
One word for 'the thing that attracts me'?
Python program for fibonacci sequence using a recursive function
How does the Earth's center produce heat?
How to politely tell someone they did not hit reply all in email?
Freedom of Speech and Assembly in China
Does French have the English "short i" vowel?
Why did Jon Snow do this immoral act if he is so honorable?
Creating second map without labels using QGIS?
Is keeping the forking link on a true fork necessary (Github/GPL)?
Which European Languages are not Indo-European?
What could a self-sustaining lunar colony slowly lose that would ultimately prove fatal?
Why do Russians almost not use verbs of possession akin to "have"?
Why was this character made Grand Maester?
Where is Jon going?
Why does the hash of infinity have the digits of π?
“For nothing” = “pour rien”?
Why is unzipped directory exactly 4.0k (much smaller than zipped file)?
Cardio work for Muay Thai fighters
How do i create a code for creating new username and password
How to merge two dictionaries in a single expression?How do I check if a list is empty?How do I check whether a file exists without exceptions?How can I safely create a nested directory?How do I sort a dictionary by value?How to make a chain of function decorators?How to make a flat list out of list of listsAdd new keys to a dictionary?How do I list all files of a directory?Way to create multiline comments in Python?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
... where the password must fulfil the following criteria:
- more than 8 characters
- at least 1 upper and 1 lower case letter, 1 digit and 1 special symbol
- does not contain the username
def enterUsername():
username = input("Enter username: ")
username = enterUsername()
def enterPassword():
LENGTH = 8
password = input("Enter password: ")
upCase = False #indicate if password has at least 1 upper
lowCase = False #indicate if password has at least 1 lower
digit = False #indicate if password has at least 1 digit
special = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '+', '_', '=']
for char in password: #iterate on each character of password (go through every character, for each character in the string)
if char.isupper(): #if character is in upper, set upCase to
upCase = True
if char.islower(): #if character is in lower, set lowCase to
lowCase = True
if char.isdigit(): #if character is a digit, set digit to
digit = True
for spechar in special:
if char == spechar:
special = True
length = len(password) #get length of password
strong = upCase and lowCase and digit and special and length > LENGTH #strong would be true if all the conditions hold
while True:
password = input("Enter password: ")
if not strong:
print("Your password is weak.")
else:
print ("Your password is strong enough.")
break
return password
enterPassword()
python python-3.x
add a comment |
... where the password must fulfil the following criteria:
- more than 8 characters
- at least 1 upper and 1 lower case letter, 1 digit and 1 special symbol
- does not contain the username
def enterUsername():
username = input("Enter username: ")
username = enterUsername()
def enterPassword():
LENGTH = 8
password = input("Enter password: ")
upCase = False #indicate if password has at least 1 upper
lowCase = False #indicate if password has at least 1 lower
digit = False #indicate if password has at least 1 digit
special = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '+', '_', '=']
for char in password: #iterate on each character of password (go through every character, for each character in the string)
if char.isupper(): #if character is in upper, set upCase to
upCase = True
if char.islower(): #if character is in lower, set lowCase to
lowCase = True
if char.isdigit(): #if character is a digit, set digit to
digit = True
for spechar in special:
if char == spechar:
special = True
length = len(password) #get length of password
strong = upCase and lowCase and digit and special and length > LENGTH #strong would be true if all the conditions hold
while True:
password = input("Enter password: ")
if not strong:
print("Your password is weak.")
else:
print ("Your password is strong enough.")
break
return password
enterPassword()
python python-3.x
1
Welcome to stackoverflow. Please identify the problem with your code.
– belwood
Mar 23 at 16:51
add a comment |
... where the password must fulfil the following criteria:
- more than 8 characters
- at least 1 upper and 1 lower case letter, 1 digit and 1 special symbol
- does not contain the username
def enterUsername():
username = input("Enter username: ")
username = enterUsername()
def enterPassword():
LENGTH = 8
password = input("Enter password: ")
upCase = False #indicate if password has at least 1 upper
lowCase = False #indicate if password has at least 1 lower
digit = False #indicate if password has at least 1 digit
special = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '+', '_', '=']
for char in password: #iterate on each character of password (go through every character, for each character in the string)
if char.isupper(): #if character is in upper, set upCase to
upCase = True
if char.islower(): #if character is in lower, set lowCase to
lowCase = True
if char.isdigit(): #if character is a digit, set digit to
digit = True
for spechar in special:
if char == spechar:
special = True
length = len(password) #get length of password
strong = upCase and lowCase and digit and special and length > LENGTH #strong would be true if all the conditions hold
while True:
password = input("Enter password: ")
if not strong:
print("Your password is weak.")
else:
print ("Your password is strong enough.")
break
return password
enterPassword()
python python-3.x
... where the password must fulfil the following criteria:
- more than 8 characters
- at least 1 upper and 1 lower case letter, 1 digit and 1 special symbol
- does not contain the username
def enterUsername():
username = input("Enter username: ")
username = enterUsername()
def enterPassword():
LENGTH = 8
password = input("Enter password: ")
upCase = False #indicate if password has at least 1 upper
lowCase = False #indicate if password has at least 1 lower
digit = False #indicate if password has at least 1 digit
special = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '+', '_', '=']
for char in password: #iterate on each character of password (go through every character, for each character in the string)
if char.isupper(): #if character is in upper, set upCase to
upCase = True
if char.islower(): #if character is in lower, set lowCase to
lowCase = True
if char.isdigit(): #if character is a digit, set digit to
digit = True
for spechar in special:
if char == spechar:
special = True
length = len(password) #get length of password
strong = upCase and lowCase and digit and special and length > LENGTH #strong would be true if all the conditions hold
while True:
password = input("Enter password: ")
if not strong:
print("Your password is weak.")
else:
print ("Your password is strong enough.")
break
return password
enterPassword()
python python-3.x
python python-3.x
edited Mar 23 at 23:52
gmds
11.3k21038
11.3k21038
asked Mar 23 at 16:31
wongzlllwongzlll
112
112
1
Welcome to stackoverflow. Please identify the problem with your code.
– belwood
Mar 23 at 16:51
add a comment |
1
Welcome to stackoverflow. Please identify the problem with your code.
– belwood
Mar 23 at 16:51
1
1
Welcome to stackoverflow. Please identify the problem with your code.
– belwood
Mar 23 at 16:51
Welcome to stackoverflow. Please identify the problem with your code.
– belwood
Mar 23 at 16:51
add a comment |
1 Answer
1
active
oldest
votes
this is a tester that work well for me:
password = input('Enter your password here : ')
print('n')
from re import *
lower_match = compile(r'[a-z]').findall(password) # Finding if the password contains lowecase letters.
upper_match = compile(r'[A-Z]').findall(password) # Finding if the password contains uppercase letters.
symbol_match = compile(r'[|"|'|~|!|@|#|$|%|^|&|*|(|)|_|=|+|||,|.|/|?|:|;|[|]||<|>]').findall(
password) # Finding if the password contains special characters.
number_match = compile(r'[0-9]').findall(password) # Finding if the password contains numbers.
if len(password) < 8 or len(lower_match) == 0 or len(upper_match) == 0 or len(symbol_match) == 0 or len(
number_match) == 0:
print('Your password is weak ! ')
elif len(password) >= 8:
print('Your password is strong ! ')
elif len(password) >= 16:
print('Your password is very strong ! ')
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315910%2fhow-do-i-create-a-code-for-creating-new-username-and-password%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
this is a tester that work well for me:
password = input('Enter your password here : ')
print('n')
from re import *
lower_match = compile(r'[a-z]').findall(password) # Finding if the password contains lowecase letters.
upper_match = compile(r'[A-Z]').findall(password) # Finding if the password contains uppercase letters.
symbol_match = compile(r'[|"|'|~|!|@|#|$|%|^|&|*|(|)|_|=|+|||,|.|/|?|:|;|[|]||<|>]').findall(
password) # Finding if the password contains special characters.
number_match = compile(r'[0-9]').findall(password) # Finding if the password contains numbers.
if len(password) < 8 or len(lower_match) == 0 or len(upper_match) == 0 or len(symbol_match) == 0 or len(
number_match) == 0:
print('Your password is weak ! ')
elif len(password) >= 8:
print('Your password is strong ! ')
elif len(password) >= 16:
print('Your password is very strong ! ')
add a comment |
this is a tester that work well for me:
password = input('Enter your password here : ')
print('n')
from re import *
lower_match = compile(r'[a-z]').findall(password) # Finding if the password contains lowecase letters.
upper_match = compile(r'[A-Z]').findall(password) # Finding if the password contains uppercase letters.
symbol_match = compile(r'[|"|'|~|!|@|#|$|%|^|&|*|(|)|_|=|+|||,|.|/|?|:|;|[|]||<|>]').findall(
password) # Finding if the password contains special characters.
number_match = compile(r'[0-9]').findall(password) # Finding if the password contains numbers.
if len(password) < 8 or len(lower_match) == 0 or len(upper_match) == 0 or len(symbol_match) == 0 or len(
number_match) == 0:
print('Your password is weak ! ')
elif len(password) >= 8:
print('Your password is strong ! ')
elif len(password) >= 16:
print('Your password is very strong ! ')
add a comment |
this is a tester that work well for me:
password = input('Enter your password here : ')
print('n')
from re import *
lower_match = compile(r'[a-z]').findall(password) # Finding if the password contains lowecase letters.
upper_match = compile(r'[A-Z]').findall(password) # Finding if the password contains uppercase letters.
symbol_match = compile(r'[|"|'|~|!|@|#|$|%|^|&|*|(|)|_|=|+|||,|.|/|?|:|;|[|]||<|>]').findall(
password) # Finding if the password contains special characters.
number_match = compile(r'[0-9]').findall(password) # Finding if the password contains numbers.
if len(password) < 8 or len(lower_match) == 0 or len(upper_match) == 0 or len(symbol_match) == 0 or len(
number_match) == 0:
print('Your password is weak ! ')
elif len(password) >= 8:
print('Your password is strong ! ')
elif len(password) >= 16:
print('Your password is very strong ! ')
this is a tester that work well for me:
password = input('Enter your password here : ')
print('n')
from re import *
lower_match = compile(r'[a-z]').findall(password) # Finding if the password contains lowecase letters.
upper_match = compile(r'[A-Z]').findall(password) # Finding if the password contains uppercase letters.
symbol_match = compile(r'[|"|'|~|!|@|#|$|%|^|&|*|(|)|_|=|+|||,|.|/|?|:|;|[|]||<|>]').findall(
password) # Finding if the password contains special characters.
number_match = compile(r'[0-9]').findall(password) # Finding if the password contains numbers.
if len(password) < 8 or len(lower_match) == 0 or len(upper_match) == 0 or len(symbol_match) == 0 or len(
number_match) == 0:
print('Your password is weak ! ')
elif len(password) >= 8:
print('Your password is strong ! ')
elif len(password) >= 16:
print('Your password is very strong ! ')
answered Mar 23 at 17:08
Matthijs990Matthijs990
19112
19112
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315910%2fhow-do-i-create-a-code-for-creating-new-username-and-password%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Welcome to stackoverflow. Please identify the problem with your code.
– belwood
Mar 23 at 16:51