What's new
Carbonite

South Africa's Top Online Tech Classifieds!
Register a free account today to become a member! (No Under 18's)
Home of C.U.D.

Python, Lists and Class Objects

AshenAcrobat

Member
Rating - 100%
13   0   0
Joined
Oct 16, 2019
Messages
193
Reaction score
12
Points
1,535
Age
34
Well, I am completely stumped on python. I am trying to convert a .txt file into class objects in a list. But I can't seem to wrap my head around how to do it. Anybody out here that's got a hella passion for python and is willing to point me in the right direction?
 
class Waiter:
def __init__(self, name, password):
self.name = name
self.password = password

An example of the list contents is:

Sarah, 54632
Rob, 875412
 
class Waiter:
def __init__(self, name, password):
self.name = name
self.password = password

waiter_list = []

with open('waiters.txt', 'r') as file:
lines = file.readlines()

for line in lines:
line = line.strip() # Remove leading/trailing whitespace and newline characters
if line:
name, password = line.split(', ')
waiter = Waiter(name, password)
waiter_list.append(waiter)

for waiter in waiter_list:
print(f"Name: {waiter.name}, Password: {waiter.password}")
 
class Waiter:
def __init__(self, name, password):
self.name = name
self.password = password

waiter_list = []

with open('waiters.txt', 'r') as file:
lines = file.readlines()

for line in lines:
line = line.strip() # Remove leading/trailing whitespace and newline characters
if line:
name, password = line.split(', ')
waiter = Waiter(name, password)
waiter_list.append(waiter)

for waiter in waiter_list:
print(f"Name: {waiter.name}, Password: {waiter.password}")
Going to give it a go. Will update on how it goes. Thank you very much for the help!
 
Your answer was stellar. Adapted it for something else in my project as well after I got stumped again. Trying hard to get this done. Want to get out of the education sector
 
Your answer was stellar. Adapted it for something else in my project as well after I got stumped again. Trying hard to get this done. Want to get out of the education sector
Nice, im glad. Let me know if you need any more help
 

Users who are viewing this thread

Back
Top Bottom