diff --git a/Images/1.png b/Images/1.png new file mode 100644 index 0000000..4f4c477 Binary files /dev/null and b/Images/1.png differ diff --git a/Images/27.png b/Images/27.png new file mode 100644 index 0000000..26dcb50 Binary files /dev/null and b/Images/27.png differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..e81c637 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Python 50 Excercise :fire: +1) A username is accepted and the user is asked to guess a number. The user will get 10 guesses. With every guess the interpreter will tell whether the guess is higher than or lower than the expected value. + +### Code: [Code1](practice1.py) +### Output: [Output1](Images/1.png) +------------------------------------------------------ +27) A password will be generated with the following Program. +### Code: [Code27](practice27.py) +### Output: [Output27](Images/27.png) +------------------------------------------------------ +## Requirements +`python 3.7` or above. +------------------------------------------------------ diff --git a/practice27.py b/practice27.py index f075a3f..13144d4 100644 --- a/practice27.py +++ b/practice27.py @@ -13,4 +13,4 @@ password_generator = "".join(choice(password_available_characters) for x in range(randint(8, 32))) #Printing the generated password -print(password) +print(password_generator)