The given flow chart checks the password length of more than 6 characters. Convert the following flowchart to python program.
Attachments:
Answers
Answered by
2
Answer:
#this program is for input as string...
password=eval(input("enter the password"))
if len(password)>6:
print("strong password")
else:
print("weak password")
#hope it helps you
please mark brainliest
Answered by
1
Here is your answer please mark me as a brainlist please....
Attachments:
Similar questions