Contact: aviboots(AT)netvision.net.il
40,875 questions
53,283 answers
573 users
lst = [4.12, 3.14, 1.23, 2.99] s = " ".join([str(f) for f in lst]) print(s) ''' run: 4.12 3.14 1.23 2.99 '''