Common Python errors

Source: Internet
Author: User

1. typeerror: coercing to UNICODE: need string or buffer, type found

Traceback (most recent call Last  ): File  "  Unzip. py  " , Line 20 , In <Module> Tar = Tarfile. Open ( File  ) File  "  /System/library/frameworks/python. Framework/versions/2.7/lib/python2.7/tarfile. py " , Line 1658 , In  Open return func (name,  "  R  " , Fileobj ,** Kwargs) File  "  /System/library/frameworks/python. Framework/versions/2.7/lib/python2.7/tarfile. py  " , Line 1720 , In  Gzopen fileobj = Bltn_open (name, mode + "  B  "  ) Typeerror: coercing to UNICODE: Need  String Or buffer, type found

CodeIs:

 #  Scan all current GZ files Currdir = OS. getcwd () files = OS. listdir (currdir) dstdir = "  20130.009  "  If  Not  OS. Path. exists (dstdir): OS. mkdir (dstdir)  For Filename In  Files:  If OS. Path. isfile (filename) And  Tarfile. is_tarfile (filename ):  Print  Filename  Try  : Tar = Tarfile. Open (file) #  This should be filename, not file. Names = Tar. getnames ()  For Name In  Names: tar. Extract (name, path = Dstdir) tar. Close ()  Except  Tarfile. readerror:  Print   "  Not a tarfile  "              Pass 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.