Files
Python-HV/Pass2/5 Struct.py
2018-03-15 16:21:39 +01:00

12 lines
184 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)