HP Forums

Full Version: More Python Questions!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to pause the program at the end? wait doesn't work.

Also is there a way to access the system clock or at least access a timer? ticks doesn't work either and the time Python library isn't included.
You can use HPPPL and CAS functions through hpprime.eval().

So yes :
Code:
import hpprime
hpprime.eval("wait()")
hpprime.eval("ticks()")
(04-21-2021 06:28 AM)critor Wrote: [ -> ]You can use HPPPL and CAS functions through hpprime.eval().

So yes :
Code:
import hpprime
hpprime.eval("wait()")
hpprime.eval("ticks()")

Excellent. This will solve all my Python problems although I hope they'll add more native Python libraries. Thanks!
Reference URL's