I'm trying write a program that keeps printing a random fish emoji from a list, and each time it does, it'll print an additional fish on the same line. For example, the first printed line will have 1 fish, then the next line will have 2, then 3, and so on.
I have this code so far:
import random
import time
#
#
#
fish = ['', '', ''];
while 1 == 1 :
print(random.choice(fish));
time.sleep(.1)
This prints a single fish per line. How can I make it print additional fish on the same line?