2
I installed the Chronometer 1.0 module for python 3.4: Chronometer module
I tried to use the start() attribute of the Chronometer method, but gives an error: requires a self argument'
>>>from chronometer import Chronometer as crmt
>>>crmt.start()
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
crmt.start()
TypeError: start() missing 1 required positional argument: 'self'
>>>crmt.start(self)
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
crmt.start(self)
NameError: name 'self' is not defined
Can someone explain to me how to solve this problem and get the timer to work correctly, and what is the code to write a functional stopwatch?
Thank you, it worked perfectly
– Inês Barata Feio Borges