
[split] I need help making a four digit code cracker with random
Apr 28, 2025 · hi i need help making a four digit code cracker with random here is my code if you have any idea to help me: from random import * code_user = "2344" print (code) if code == code_user: …
I need advise with developing a brute forcing script
Aug 21, 2020 · I need some advise on developing a script to brute force a 4 digit pin. I know the pin has to be from 0000 to 9999 However, on the game website there is a slot for me to add 4 digit pin.
Four digit combinations - Python Forum
Aug 13, 2017 · Hi, I have a school problem to design and write a program that displays all the possible combinations for any four numerical digits entered by a user. The program should avoid displaying …
Guessing game with 4 different digits - Python Forum
Mar 29, 2020 · Hi, I'm new to programming and I need to make a guessing game. Python needs to generate a random code containing 4 digits, the 4 digits have to all be different and can only be …
Adding spaces to digits - Python Forum
Feb 10, 2024 · '''I am new to python and programming in general, currently learning at an institution, which is why def is not even seen in my code. I am very lost right now, was tasked this: Let us …
Brute Force Pad Lock Guesser - Python Forum
Mar 3, 2018 · I'm trying to learn how to have more control over increments, but I have a delema (see comments in following code): #!/usr/bin/env python3 #PadLockGuesser.py lockCombo = 1080 #brute …
Syntax for Doubling a number - Python Forum
Jan 12, 2025 · Hello, having trouble with some coding: def double_num (number): # what code is needed to double the contents of the variable number? print (double_num (21)) Below is what I am …
crack the safe - Gangster Nation - Python Forum
Dec 3, 2020 · hello, I play a game called 'Gangster Nation', where the game is like creating mafia community. there is one feature that made me interested, that is crack the safe to get money. so the …
re: normalize of mac address - Python Forum
Dec 6, 2019 · Colleagues, tell me, please, the answer to my question. I have a variable that contains the mac address. Here is a regular expression describing it - r'^\w {1,2}:\w {1,2}:\w {1,2}:\w {1,2}:\w …
Filter and str.isdigit producing an error - Python Forum
Aug 12, 2022 · Greetings! It is probably an elementary problem for you but I'm struggling to understand why the snippet below is failing. I found it online and it looks ok, but it is not. s = 'November 11 day' pp =