Skip to content
Advertisement

Tag: loops

Finding the number of rows for all files within a folder

Hello I am trying to find the number of rows for all files within a folder. I am trying to do this for a folder that contains only “.txt” files and for a folder that contains .”csv” files. I know that the way to get the number of rows for a SINGLE “.txt” file is something like this: Whereas for

Python psychic guessing game repeats 10 times

I want it so it will randomly generate a number between 1-10 and the user will input their guess. It will then output if it is right or wrong, after 10 rounds it will tell them how psychic they are. I have done most of it but I cannot get it to randomly generate 10 numbers instead it generates 1

How does this iterative loop fit the model? ( Machine Learning)

I’m confused as to what for m in range(1, len(X_train)): is doing in the line model.fit(X_train[:m], y_train[:m]) y_train_predict = model.predict(X_train[:m]) . So I think that m is going to loop over the size of the training data.and that for each loop m+=1 but I don’t understand the rest Answer The purpose of this function is to show the performance of

How to obtain a value from inside a loop

I will be implementing multiprocessing so that the loops are occurring at the same time, but how can I make it so at the end of each iteration, I can obtain the value of westernEurope.cases and easternEurope.cases so that I can add them together Answer IMHO there is no need for multiprocessing. With a generator, your problem can be solved

Advertisement