1lst = [2, 3, 4]
2a = f"beautiful numbers to follow: {' '.join(lst)}"
3a = "beautiful numbers to follow: {}".format("\t".join(lst))
4a = f"beautiful numbers to follow: {' '.join(lst)}"
5a = "beautiful numbers to follow: {}".format('\n'.join(lst))
6
7
8b = f"beautiful numbers to follow: {' '.join(lst)}"
9b = 'beautiful numbers to follow: {}'.format("\n".join(lst))
10b = f"beautiful numbers to follow: {' '.join(lst)}"
11b = f"beautiful numbers to follow: {','.join(lst)}"