Hi@akhtar,
There is no inbuilt function available to save one list. But you can use a python script to save one list in a text file. I have attached one python script below.
list =['Hello','How are you?','Bye']
with open("list.txt", "w") as f:
for s in list:
f.write(str(s) +"\n")
I hope this will help you.