FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Examples/Python/Array.py at master · daviddoria/Examples · GitHub
daviddoria
/
Examples
Public
Notifications
You must be signed in to change notification settings
Fork
125
Star
232
Code
Issues
7
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Examples
/
Python
/
Array.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
11 lines (7 loc) · 123 Bytes
Breadcrumbs
Examples
/
Python
/
Array.py
Copy path
File metadata and controls
11 lines (7 loc) · 123 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
a
=
[]
for
i
in
range
(
1
,
5
):
#prints 1 to 4 !!
print
i
a
.
append
(
i
)
for
i
in
range
(
0
,
4
):
print
a
[
i
]
Back
|
FazBrowse Home
|
New Git URL