I'm really new to programming, I was wondering if there was a way to run a while loop in the background of code already running in Python?
I was thinking of something like
While True:
print("gibberish")
print("pass")
with an output of something like:
'gibberish gibberish pass gibberish.....'
(It doesn't have to be in this order as long as I get a similar result)