File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ rand = random.randint(20,40)
2929
print(rand)
3030
```
3131

32-
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
33-
3432
The above code will generate a random number between 20 and 40.
3533

3634
## Solution
@@ -53,7 +51,6 @@ while True:
5351
print('Your guess did not match')
5452
print('The number was:', num)
5553
```
56-
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
5754

5855
## Explanation
5956
Since we want to create a random number between 0 to 10 we used randint(0,10)
@@ -65,10 +62,3 @@ After that, we use the int to convert the user input to an integer number. We di
6562
That’s why we put the int after the check for q.
6663

6764
The bottom part of the code should be easier for you.
68-
69-
70-
 
71-
[![Next Page](../assets/next-button.png)](Rock-paper-scissor.md)
72-
 
73-
74-
tags: `programming-hero` `python` `python3` `problem-solving` `programming` `coding-challenge` `interview` `learn-python` `python-tutorial` `programming-exercises` `programming-challenges` `programming-fundamentals` `programming-contest` `python-coding-challenges` `python-problem-solving`

0 commit comments

Comments
 (0)