Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
289931d
Update if.md and loops.md
georgerahul24 Dec 30, 2020
6f1d882
Update if.md and loops.md
georgerahul24 Dec 30, 2020
9181d7a
Fixed Typo
georgerahul24 Jan 1, 2021
d5cf490
Removed unnecessary comments in the programmes
georgerahul24 Jan 1, 2021
848b0f3
Merge branch 'Akuli:master' into master
georgerahul24 Jul 1, 2021
33049e1
Update basics/loops.md
georgerahul24 Jul 13, 2021
a509a8e
Update basics/loops.md
georgerahul24 Jul 13, 2021
8fd60e4
Update basics/answers.md
georgerahul24 Jul 13, 2021
1eeda48
I have made the necessary changes as requested
georgerahul24 Jul 13, 2021
2ce1e7d
Update LICENSE
georgerahul24 Jul 13, 2021
7a93d2a
Update basics/loops.md
georgerahul24 Jul 13, 2021
39f94f5
Update basics/loops.md
georgerahul24 Jul 13, 2021
546f769
Update basics/handy-stuff-strings.md
georgerahul24 Jul 13, 2021
afafcdb
Update basics/answers.md
georgerahul24 Jul 13, 2021
9f35e3a
updated handy-stuff-strings.md
georgerahul24 Jul 13, 2021
e69aad0
Merge remote-tracking branch 'origin/master'
georgerahul24 Jul 13, 2021
ea0d4e6
Update basics/answers.md
georgerahul24 Jul 13, 2021
69e62b3
updated handy-stuff-strings.md
georgerahul24 Jul 13, 2021
34693ce
Merge branch 'master' of https://github.com/georgerahul24/python-tuto…
georgerahul24 Jul 13, 2021
b2e23df
updated handy-stuff-strings.md
georgerahul24 Jul 13, 2021
7e79089
Update basics/answers.md
georgerahul24 Jul 30, 2021
8cbe80f
Update basics/answers.md
georgerahul24 Jul 30, 2021
0e407c3
Update basics/answers.md
georgerahul24 Jul 30, 2021
228c862
Update basics/answers.md
georgerahul24 Jul 30, 2021
ea2f5f7
Update basics/answers.md
georgerahul24 Jul 30, 2021
b9ef729
Update basics/answers.md
georgerahul24 Jul 30, 2021
f8549e8
Update basics/answers.md
georgerahul24 Jul 30, 2021
985a52f
Update basics/handy-stuff-strings.md
georgerahul24 Jul 30, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated handy-stuff-strings.md
  • Loading branch information
georgerahul24 committed Jul 13, 2021
commit b2e23dfdecaee92d9e779545cd0dceb10a9ffcda
7 changes: 4 additions & 3 deletions basics/answers.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,10 @@ isn't exactly like mine but it works just fine it's ok, and you can
print(number, end=' ')
print()
```
Here,the first for loop fetches us the column to which we have to add the number.<br>
Now,suppose the column is 2.The second for loop finds all the numbers that lie between the column number(i.e. here 2) and the total rows we need.<br>
If total rows we need is 5 then we get 2,3,4 and 5 in the second for loop
Here,the first `for` loop fetches us the column to which we have to add the number.<br>
Comment thread
georgerahul24 marked this conversation as resolved.
Outdated
Now,suppose the column is `2`.The second `for` loop finds all the numbers that lie between the column number(i.e. here 2) and the total rows we need.
Eg:If total rows we need is 5 then we get 2,3,4 and 5 in the second `for` loop, when column_count is 2<br>
Comment thread
georgerahul24 marked this conversation as resolved.
Outdated

## Trey Hunner: zip and enumerate

1. Read some lines with `input` into a list and then enumerate it.
Expand Down