Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson23-diy3
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5cf920ab
authored
Jun 19, 2021
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
3faf4b37
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
2 deletions
demo.py
read_csv.py
demo.py
0 → 100644
View file @
5cf920ab
'''
1. 打印所有同学的英语成绩
2. 找到皮皮的所有成绩
3. 课后练习 查找地理成绩低于75分同学的名字
'''
import
csv
a
=
0
with
open
(
'report.csv'
,
'r'
,
encoding
=
'utf-8'
)
as
f
:
f_csv
=
csv
.
reader
(
f
)
listcsv
=
list
(
f_csv
)
# print(listcsv[len(listcsv)-1])
for
i
in
range
(
len
(
listcsv
)):
# print(listcsv[i])
for
j
in
range
(
len
(
listcsv
[
i
])):
if
listcsv
[
i
][
j
]
==
'英语'
:
a
=
j
print
(
listcsv
[
i
][
a
])
\ No newline at end of file
read_csv.py
View file @
5cf920ab
"""读取csv文件""""
\ No newline at end of file
import
csv
with
open
(
'report.csv'
,
'r'
,
encoding
=
'utf-8'
)
as
f
:
f_csv
=
csv
.
reader
(
f
)
# print(f_csv)
csvlist
=
list
(
f_csv
)
for
j
in
csvlist
[
7
]:
print
(
j
)
print
(
'*'
*
10
)
for
i
in
range
(
len
(
csvlist
)):
print
(
csvlist
[
i
][
3
])
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment