I'm making a timer and I got it to tick down, and display properly in the command prompt with this:
min = (code for counting minutes)
sec = (code for counting seconds)
print( min , ":" , sec , sep="" )
12:34
Now I want to make what is printed in to a variable/string so I could use it in other code.
Btw I don't need for the time to display the time in cmd
, I just need to make min:sec in to a variable.