Python Loop Break pada Keypress

try:
    while True:
        do_something()
except KeyboardInterrupt:
    pass
Tommyom