Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo,

ich schreibe ein Python-Programm, wo zwei letzten Elemente der vorgegebenen Liste 'volunteer_datas' ausgegeben werden sollten.
Es muss auch die Vererbung eingesetzt werden (das ist schon realisiert):

class Person:
    def __init__(self, name: str):
        self.name = name

    def __str__(self):
        return f'{self.name}'

class Volunteer(Person):
    def __init__(self, name: str, place: str, status: str):
        super().__init__(name)                                   # Обеспечивает доступ к оригиналам наследованных методов. Это полезно для доступа к унаследованным методам, которые были переопределены в классе.
        self.place = place
        self.status = status

    def __str__(self):
        return f'{self.name}, {self.place}, {self.status}'

volunteer_datas = [
        {"name": "Smith", "place": "Boston", "status": 'Consultant'},
        {"name": "Elvin", "place": "Paris", "status": 'Mentor'},
        {"name": "Schwarz", "place": "Viena", "status": 'Trainer'}]

print('list of guests :')
for volunteer_data in volunteer_datas:
    for i in volunteer_data:
        if i == 'name' and (volunteer_data['name'] == 'Elvin' or 'Schwarz'):
            obj_vol = Volunteer(volunteer_data['name'], volunteer_data['place'], volunteer_data['status'])
            print(obj_vol.__str__())

Das Programm gibt momentan aber alle Elementen der Liste, nicht die zwei letzten:

list of guests :
Smith, Boston, Consultant
Elvin, Paris, Mentor
Schwarz, Viena, Trainer

Ich wollte zuerst die Ausgabe mittels -if- realisieren (ich weiss, es ginge auch mittel -for- aber das lieber danach).
Also, bei der Ausgabe wollte ich Angaben der zwei letzten Positionen aus der Liste (mit der 'name', place', Status') bekommen:

{"name": "Elvin", "place": "Paris", "status": 'Mentor'}, 
{"name": "Schwarz", "place": "Viena", "status": 'Trainer'}

Hier bitte ich um Hilfe.

 

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.