Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kurs_alx_pcz
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patryk Czarnik
kurs_alx_pcz
Commits
e3615cb3
Commit
e3615cb3
authored
Dec 11, 2023
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
emps_obiektowo - pierwsze przykłady
parent
6a559262
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
employees.py
dzien8/emps2_obiektowo/employees.py
+2
-1
p1_wypisz_dane.py
dzien8/emps2_obiektowo/p1_wypisz_dane.py
+10
-0
No files found.
dzien8/emps2_obiektowo/employees.py
View file @
e3615cb3
...
...
@@ -26,6 +26,7 @@ def read_csv(file_path='emps.csv'):
file
.
readline
()
for
line
in
file
:
t
=
line
.
strip
()
.
split
(
';'
)
emp
=
Employee
(
int
(
t
[
0
]),
t
[
1
],
t
[
2
],
t
[
3
],
int
(
t
[
4
]),
t
[
5
],
t
[
6
],
t
[
7
],
t
[
8
],
t
[
9
],
t
[
10
])
emp
=
Employee
(
int
(
t
[
0
]),
t
[
1
],
t
[
2
],
t
[
3
],
int
(
t
[
4
]),
t
[
5
],
t
[
6
],
t
[
7
],
t
[
8
],
t
[
9
],
t
[
10
])
emps
.
append
(
emp
)
return
emps
dzien8/emps2_obiektowo/p1_wypisz_dane.py
0 → 100644
View file @
e3615cb3
from
employees
import
read_csv
# Wszystkie szczegóły związane z dostępem do pliku, są ukryte w tej funkcji
emps
=
read_csv
(
'emps.csv'
)
# Aby wykonać operacje "dla każdego pracownika", wykonujemy pętlę po elementach listy `emps`.
# Pojedynczy element `emp` to obiekt klasy `Employee`, a dane pracownika są dostępne3 w postaci atrybutów tego obiektu,
# np. `.first_name`, `.salary`
for
emp
in
emps
:
print
(
f
'Pracownik {emp.first_name} {emp.last_name} ({emp.job_title}) zarabia ${emp.salary}'
)
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