Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Check Password Strength | Introduction to Cyber Security
Cybersecurity Fundamentals
セクション 1.  6
single

single

bookChallenge: Check Password Strength

メニューを表示するにはスワイプしてください

Now, let's create a simple program to assess the strength of a password. As we've emphasized earlier, having a robust password is crucial for protection against malware and phishing attempts. So, let's proceed with building our straightforward program!

タスク

スワイプしてコーディングを開始

You have to write a function that checks the strength of the password. Password is considered strong if it has more than 8 characters and there is at least one number and at least one letter.

  1. Use < operator to check if the provided password has more than 8 characters.
  2. Use .search() method of re library to check if there is at least one number and at least one number.

Note

re is the abbreviation for the "regular expression" module in Python. It offers powerful tools for pattern matching and text manipulation, making it useful for tasks like searching, replacing, and validating strings.

Once you've completed this task, click the button below the code to check your solution.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  6
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt