I’ve seen some examples like this:
for name in os.listdir(u'somedir') :
my problem is that I’m getting the somedir as a variable, so how can I append the ‘u’ literal?
something like
for name in ops.listdir(u+somedir)
?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the source of
somedirdoesn’t provide it as a Unicode string (isinstance(somedir, unicode)is False) then you should decode it by providing an appropriate character encoding (it depends on where the bytes come from):