Copying non-existing files

Chris Angelico rosuav at gmail.com
Wed May 21 10:45:10 EDT 2014


On Thu, May 22, 2014 at 12:14 AM, Rustom Mody <rustompmody at gmail.com> wrote:
> d ++ "\\" ++ f

ITYM:

d + "\\" + f

or possibly:

d + "/" + f

ChrisA



More information about the Python-list mailing list