Files
Python-HV/Pass2/struct.py
2018-03-15 14:52:03 +01:00

11 lines
183 B
Python
Executable File

class Car:
pass
myCar = Car() # Create an empty employee record
# Fill the fields of the record
myCar.model = 'V 70'
myCar.brand = 'Volvo'
myCar.year = 2005
print(myCar.model)