Skip to content

Commit 3f299b8

Browse files
committed
try url fix
1 parent e5cd053 commit 3f299b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Number-Related/Average-of-numbers.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Want to try it yourself first? Go to the code editor and try it.
2323
</details>
2424
<br>
2525

26-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
26+
**[Try It:](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
2727

2828

2929
#### S-3: Solution
@@ -41,7 +41,7 @@ avg = total/len
4141
print("Average of elements you entered",round(avg,2))
4242
```
4343

44-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
44+
**[Try It:](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
4545

4646
#### S-4: Explanation
4747
First, ask the user how many numbers he/she wants to enter. Once we have the number, run a for loop. To collect the numbers.
@@ -65,7 +65,7 @@ for i in range(0,len):
6565
avg = total/len
6666
print("Average of elements you entered",round(avg,2))
6767
```
68-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
68+
**[Try It:](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
6969

7070
#### S-6: Explanation
7171
In the second approach, other than directly adding to the list, we are adding it to the total variable. And then we are dividing it by the number of input the user entered.

0 commit comments

Comments
 (0)