Python cara mengubah daftar pelampung ke daftar string

# Basic syntax:
[str(x) for x in list_of_floats]

# Example usage:
list_of_floats  = [1.2, 1.7, 3.141592654] 
[str(x) for x in list_of_floats]
--> ['1.2', '1.7', '3.141592654']
Charles-Alexandre Roy