Subscriber nudge+ Posted November 30, 2021 Subscriber Share Posted November 30, 2021 @Mel81x what is, in your opinion, the most efficient way to run a certain python script on all files in a specific folder? Should I just call os.listdir and just loop over all files in that directory? Something like: import os for f in os.listdir(path_to_my_directory): # my script here ? Or is there a better way, especially since there might be thousands of files to work on? EDIT: I solved it using glob module, but please let me know if there's a better way to do it! import glob path = input("Enter the Directory: ") filenames = glob.glob(path + '/*.html') for filename in filenames: # my code here Link to comment Share on other sites More sharing options...
Bluebird Hewitt Posted April 1, 2022 Share Posted April 1, 2022 Sorry to be a pain. Anyone know where's best to find some ideas for Python coding please? I only ask as I'm in the middle of doing an assignment and need to do some coding for four exercises. While a couple could be fine, I might need to research some bits to have an idea on the code to write for certain functions. Link to comment Share on other sites More sharing options...
Subscriber nudge+ Posted April 1, 2022 Subscriber Share Posted April 1, 2022 34 minutes ago, Bluebird Hewitt said: Sorry to be a pain. Anyone know where's best to find some ideas for Python coding please? I only ask as I'm in the middle of doing an assignment and need to do some coding for four exercises. While a couple could be fine, I might need to research some bits to have an idea on the code to write for certain functions. Stack Overflow is your best friend! Also, as silly as it sounds, Google. Link to comment Share on other sites More sharing options...
Bluebird Hewitt Posted April 1, 2022 Share Posted April 1, 2022 44 minutes ago, nudge said: Stack Overflow is your best friend! Also, as silly as it sounds, Google. Cheers. I have been on Stack Overflow a couple of times but didn't think of them. Link to comment Share on other sites More sharing options...
Subscriber Pyfish+ Posted April 8, 2022 Subscriber Share Posted April 8, 2022 Recently started teaching myself the 'lua' language and would love to start Python once I've got to grips with lua. Link to comment Share on other sites More sharing options...
Bluebird Hewitt Posted April 24, 2022 Share Posted April 24, 2022 @Eco, @nudge, @Mel81x I'm on the final exercise of my assignment and have a partially working code for what is meant to be a matching pairs game. I have checked online on quite a few sites but am struggling to find anything that not just corresponds to what I'm doing, but also dealing with the fundamentals only. There's some areas I need to focus on but can't seem to get the following to work. 1. The While Loops I have cover the first guesses, but do not cover any other guesses. I think it's mainly where I have placed the While Loops as these need to cover 'out of range' and 'invalid' values such as minus figures and over 12. 2. The code works to a point, but there's part of it that should be a function to stop repeats. I think it's around the guesses due to the potential number of guesses that someone could have, but I can't seem to get a function to work correctly. 3. The random number generator works, but not sure if it could be simplified at all. The code at present is as follows. theNumbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] matches = [1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6] correct = ["?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?"] userNumbers = [] import random for counter in range(0, 50): random1 = random.randint(0, 11) # random lst random2 = random.randint(0, 11) # random lst temp = matches[random1] # move random1 to temp matches[random1] = matches[random2] matches[random2] = temp print(theNumbers) print(matches) print("Welcome to the pairs game. There are six pairs to find.") print("Here is the board") print("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11") print("?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?") print("Please enter your first guess:") guess1 = int(input()) while guess1 < 0 or guess1 > 11: print("That number is not on the board. Please choose a number from the board:") guess1 = int(input()) print("Please enter your second guess:") guess2 = int(input()) while guess2 < 0 or guess2 > 11: print("That number is not on the board. Please choose a number from the board:") guess2 = int(input()) if matches[guess1] == matches[guess2]: print("Well done. That's a match") correct[guess1] = "X" correct[guess2] = "X" print(theNumbers) print(correct) print("Please enter your first guess:") guess1 = int(input()) print("Please enter your second guess:") guess2 = int(input()) else: print("That is not a match. Please try again") print("Please enter your first guess:") guess1 = int(input()) print("Please enter your second guess:") guess2 = int(input()) # if correct like "X", "X", "X", "X", "X", "X", "X", "X", "X", "X", "X", "X": # print("Congratulations. You have got all the pairs.") I admit that it looks like absolute ass (I am a newbie after all ) and I'll still get marks for a partial completion, but any other help would be much appreciated. Link to comment Share on other sites More sharing options...
Subscriber nudge+ Posted April 24, 2022 Subscriber Share Posted April 24, 2022 @Bluebird Hewitt I'll take a look in a few hours once I'm finished with work, if @Mel81x doesn't help you out before that. Can you post the actual assignment, too? Link to comment Share on other sites More sharing options...
Bluebird Hewitt Posted April 24, 2022 Share Posted April 24, 2022 12 minutes ago, nudge said: @Bluebird Hewitt I'll take a look in a few hours once I'm finished with work, if @Mel81x doesn't help you out before that. Can you post the actual assignment, too? No worries. I'm on my phone but have cropped the exercise as needed. It is as follows. I'm mainly trying to get it functioning correctly and with validations in place at present (no using minus figures or going 12 and above when choosing a number). The names of each number and the number of turns aren't so important just yet. Link to comment Share on other sites More sharing options...
Subscriber nudge+ Posted April 26, 2022 Subscriber Share Posted April 26, 2022 On 24/04/2022 at 20:56, Bluebird Hewitt said: No worries. I'm on my phone but have cropped the exercise as needed. It is as follows. I'm mainly trying to get it functioning correctly and with validations in place at present (no using minus figures or going 12 and above when choosing a number). The names of each number and the number of turns aren't so important just yet. Sorry it took me a while to find time... Hope it's still relevant. So I modified your code by defining a function (attempt) and then running it for a certain number of allowed guesses, and stopping it if all the pairs are found OR once the player runs out of allowed number of guesses. You can definitely remove that and let the game run indefinitely until all matches are found though I tested the code under multiple scenarios and it seems to be running without any issues, but it was a quick job so I might have missed something; make sure you try it out extensively! I didn't look at the random numbers generator part and let it as it is. theNumbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] matches = [1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6] correct = ["?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?"] userNumbers = [] import random for counter in range(0, 50): random1 = random.randint(0, 11) # random lst random2 = random.randint(0, 11) # random lst temp = matches[random1] # move random1 to temp matches[random1] = matches[random2] matches[random2] = temp print(theNumbers) print(matches) print("Welcome to the pairs game. There are six pairs to find.") print("Here is the board") print("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11") print("?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?") attempts = 0 def attempt(): print("Please enter your first guess:") guess1 = int(input()) while guess1 < 0 or guess1 > 11: print("That number is not on the board. Please choose a number from the board:") guess1 = int(input()) print("Please enter your second guess:") guess2 = int(input()) while guess2 < 0 or guess2 > 11: print("That number is not on the board. Please choose a number from the board:") guess2 = int(input()) if matches[guess1] == matches[guess2]: print("Well done. That's a match") correct[guess1] = "X" correct[guess2] = "X" print(theNumbers) print(correct) else: print("That is not a match. Please try again") global attempts attempts += 1 while attempts < 10: #can change to as many guesses as you want to allow the player attempt() if correct == ["X", "X", "X", "X", "X", "X", "X", "X", "X", "X", "X", "X"]: print("Congratulations. You have got all the pairs.") break else: print("Game over! You ran out of guesses...") Link to comment Share on other sites More sharing options...
Bluebird Hewitt Posted April 26, 2022 Share Posted April 26, 2022 Thanks for this @nudge. I'll test it later on and let you know. Much appreciated. Link to comment Share on other sites More sharing options...
Subscriber Mel81x+ Posted April 26, 2022 Subscriber Share Posted April 26, 2022 Sorry just got back into town and seen this. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.