What is the correct code for this psuedo? “”” BEGIN (Main module)…

Question Answered step-by-step What is the correct code for this psuedo? “”” BEGIN (Main module)… What is the correct code for this psuedo? “””BEGIN (Main module) Print output ‘PasswordCheckerReader program developed by : “Name_here”‘ Initialize PASSWORD_LOG_FILE as “IT_password_log.txt” Try to open PASSWORD_LOG_FILE Open and initialize the opened file Initialize an empty list as ‘password_log’ For each line in the opened file ‘file’: Append the line to the list ‘password_log’ Close the file Intialize count_pw_too_small = 0 Initialize count_pw_too_large = 0 For each element in ‘password_log’ : Output each element in ‘password_log’ to the screen if ” < 6" is in the element: increment count_pw_too_small += 1 else if " > 10″ is in the element increment count_pw_too_large += 1 Output counts of elements with length of < than 6 to the screen Output counts of elements with length of > than 10 to the screen END Module””” Computer Science Engineering & Technology Python Programming ICT MISC Share QuestionEmailCopy link Comments (0)