Câu hỏi của Lé Sơn

Không hiểu cách thức hoạt động của thư viện " re.compile" trong python

em có đọc trên trang chủ nhưng vẫn không hiểu cách thức hoạt động của nó import re name_check = re.compile(r"[^A-Za-zs.]") name = raw_input ("Please, enter your name: ") while name_check.search(name): print "Please enter your name correctly!" name = raw_input ("Please, enter your ...

Lé Sơn viết 20:01 ngày 30/09/2018 chỉnh sửa

Lỗi TypeError: 'module' object is not callable khi dùng zipfile

import zipfile def giainen(): tenfile= 'test111.zip' zip_arc = zipfile(tenfile) zip_arc.setpassword('123456') zip_arc.extract('test111.7z') zip_arc.close() giainen() khi chạy thì nó báo lỗi thế này , làm sao để khắc phục ạ ? C:UsersHeoAppDataLocalProgramsPythonPython35-32python.ex ...

Lé Sơn viết 19:31 ngày 30/09/2018 chỉnh sửa
1