Is python's print synchronized?

前端 未结 4 1916
天命终不由人
天命终不由人 2021-01-06 00:34

Is python\'s print synchronized? :)

Between Threads.

4条回答
  •  臣服心动
    2021-01-06 01:04

    if you call print from multiple threads, the output may be interleaved at the whim of the scheduler.

提交回复
热议问题