converting a list to a text without copy-pasting
Hi, I have a list and I need to convert it to a text but i want to call this list, so I don't want to copy and paste the result in text = " "
I tried text = list(U) (just assume that U is callable, so list(U) gives anything in U as a list) but it didn't work.
Can anyone suggest a way?