Skip to content

Commit b95ee17

Browse files
authored
Merge pull request #8 from abirbhattacharya82/main
Added README.md
2 parents edc4c57 + a0bbd6f commit b95ee17

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

Images/1.png

9.31 KB
Loading

Images/27.png

410 Bytes
Loading

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Python 50 Excercise :fire:
2+
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.
3+
4+
### Code: [Code1](practice1.py)
5+
### Output: [Output1](Images/1.png)
6+
------------------------------------------------------
7+
27) A password will be generated with the following Program.
8+
### Code: [Code27](practice27.py)
9+
### Output: [Output27](Images/27.png)
10+
------------------------------------------------------
11+
## Requirements
12+
`python 3.7` or above.
13+
------------------------------------------------------

practice27.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
password_generator = "".join(choice(password_available_characters) for x in range(randint(8, 32)))
1414

1515
#Printing the generated password
16-
print(password)
16+
print(password_generator)

0 commit comments

Comments
 (0)