Skip to content

Commit

Permalink
Update 自学笔记(python篇)--emhodo.md
Browse files Browse the repository at this point in the history
  • Loading branch information
emhodo authored and xiaolai committed Apr 22, 2021
1 parent e252746 commit 495fd82
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions my-notes/自学笔记(python篇)--emhodo.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
> - `random.randrange(1,1000)`表示随机产生一个1-1000的整数(含左侧1,但不含右侧1000)。
> - `for in range(10)` 将0-9依次遍历到i
案例1:打印出100以内的所有质数。

`
for i in range (2,100):


`

0 comments on commit 495fd82

Please sign in to comment.