Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: What crypt lib should be use in python?
Post: What crypt lib should be use in python?

There are many crypt lib in python, i don't know how to choose it? Anyone can help me. Pls
linh_py General Coding Help 3 2,452 Sep-15-2019, 01:50 PM
    Thread: add module in one file .exe
Post: add module in one file .exe

hello, i have homework, make keylogger. i use pyinstaller to make onefile .exe. But when i run it in victim pc, it give me "Fatal: Could not execute the script". i think it don't inclue module i used ...
linh_py Homework 1 1,829 Jul-08-2019, 01:20 PM
    Thread: FileNotFound when copy
Post: RE: FileNotFound when copy

1. If zip file in my project folder: Traceback (most recent call last): File "C:/Users/Quang Linh/PycharmProjects/AutomateTheBoringStuff/Organizing Files/[project] Backup Folder to ZIP/pdf and doc.p...
linh_py Homework 3 2,395 Jul-05-2019, 05:33 AM
    Thread: FileNotFound when copy
Post: FileNotFound when copy

hi everybody, please help me i have function, it find the file and copy to new folder. def BKZ(folder): print("Searching.............") listFiles = [] for dirpath,dirfolder,files in os.wal...
linh_py Homework 3 2,395 Jul-05-2019, 03:51 AM
    Thread: Regex: Matches a number with commas for every three digits
Post: RE: Regex: Matches a number with commas for every ...

\D same (?!\d) ? I think don't difficult ?
linh_py Homework 2 3,765 Jun-25-2019, 03:47 AM
    Thread: Regex: Matches a number with commas for every three digits
Post: Regex: Matches a number with commas for every thre...

hello everybody, i am doing my homework, "write a regex that matches a number with commas for every three digits": This is my code: import re numRegex = re.compile(r"((?<!\d)\d{1,3}(?!\d)(,\d{3})*...
linh_py Homework 2 3,765 Jun-25-2019, 12:37 AM
    Thread: AttributeError Regex
Post: RE: AttributeError Regex

(Jun-22-2019, 02:22 PM)snippsat Wrote: Your string start with one white-space and end with two,when using ^ and $ it most match the begin/end of string exactly on each line. Could be written like th...
linh_py Homework 5 3,943 Jun-22-2019, 03:33 PM
    Thread: AttributeError Regex
Post: RE: AttributeError Regex

(Jun-22-2019, 01:26 PM)ThomasL Wrote: Quote:re.search(pattern, string, flags=0) Scan through string looking for the first location where the regular expression pattern produces a match, and return a...
linh_py Homework 5 3,943 Jun-22-2019, 01:33 PM
    Thread: AttributeError Regex
Post: AttributeError Regex

hello everybody, i'm learning python, use re module, and i had a error, help me please. import re numRegex=re.compile(r"^\d{1,3}(,(\d{3}))*$") mo = numRegex.search(" 12,124,123,221 ") print(mo.group(...
linh_py Homework 5 3,943 Jun-22-2019, 12:51 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020