Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
lst_float = [7.56983, 3.817, 2.981, 5.9001] lst_string = [str(item) for item in lst_float] print(lst_string) ''' run: ['7.56983', '3.817', '2.981', '5.9001'] '''