Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson13-1
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
b313bc0f
authored
Jul 22, 2023
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
3937aa36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
23 deletions
diy.py
sales_list.txt
diy.py
View file @
b313bc0f
with
open
(
r"c:\Users\Lenovo\Documents\lesson13-1\sales_list.txt"
,
"r"
,
encoding
=
"utf-8"
)
as
file
:
a
=
file
.
readlines
()
final_sum
=
[]
for
i
in
a
:
data
=
i
.
split
()
sum
=
0
for
sales
in
data
[
1
:]:
sum
=
sum
+
int
(
sales
)
result
=
data
[
0
]
+
str
(
sum
)
+
"
\n
"
final_sum
.
append
(
result
)
with
open
(
r"c:\Users\Lenovo\Documents\lesson13-1\sales_list.txt"
,
"a"
,
encoding
=
"utf-8"
)
as
file
:
file
.
writelines
(
final_sum
)
g
=
[]
for
i
in
a
:
la
=
i
.
split
()
p
=
0
for
l
in
la
[
1
:]:
p
=
p
+
int
(
l
)
k
=
la
[
0
]
+
str
(
p
)
#print(k)
g
.
append
(
k
)
with
open
(
r"c:\Users\Lenovo\Documents\lesson13-1\sales_list.txt"
,
"a"
,
encoding
=
"utf-8"
)
as
file
:
file
.
writelines
(
g
)
\ No newline at end of file
sales_list.txt
View file @
b313bc0f
...
...
@@ -11,16 +11,4 @@
刘阳 11 15 22 11 23 26 22 15 17 52 12
王胜男 27 15 15 26 13 12 15
王娇 12 11 12 12 15 35 23 11 2
悟空348
诺依380
小贝182
李丽201
宋扬107
王明245
李强164
孙小白222
苏琪137
刘若若147
刘阳226
王胜男123
王娇133
悟空348诺依380小贝182李丽201宋扬107王明245李强164孙小白222苏琪137刘若若147刘阳226王胜男123王娇133
\ 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