I want to make a stopwatch that countdown in real seconds, soo i build a super basic stopwatch but s you expect is this counting down within milliseconds. How can i import real time into this?
count = 100
while count > 0:
print(count)
count -= 1