How to use random numbers and concatenating a string to another string random_number amount of times in python 3 ????
import random
fave_word = 'hello' + 'world'
def randomword(fave_word : str) -> str:
    '''Return something'''
    rand_num = random.randint(0,3)
    for i in range(rand_num):
        fave_word += 'Bob'
print(fave_word)
 
     
    