I am trying to write a model but i keep getting this error. Here is the code. ...
I am trying to write a model but i keep getting this error. Here is the code. ...
I want to create a new dictionary list, 'path: value' to be looped for each user and appended under each item in the user list. The end result would l ...
I want to convert the following list using the Tesseract Library in R to a CSV file, using the /n to create a new row, and white space to create a new ...
I am trying to verify that .shuffled() on a list is called, but get an error on running because of a prior .take(6) call on the list, and I cannot see ...
I have a list of employees and I want to create tables for them. I want to continue creating tables even if one of the table creations fail. I am usin ...
I have this list of lists = [['Lost Summoner Kitty', 70], ['Ironbound', 4000]] And I also have this dataframe: I would like to find a general way ...
I made this code to brute force anagrams by printing all possible permutables of the characters in a string, however there is no output. I do not need ...
I need to write a script in python that does the following : Creates an empty list Uses a for loop to check if any value in an array is below 24.75 ...
I'm building an application in Python where I need to define the following sort of function: The expected output is all possible versions of the in ...
I am working with a field called codes that is a delimited list of values, separated by commas. Within each item there is a title ending in a colon an ...
Just started learning python, so I'm very thankful for anyone who can help. Anyways the task is to define a function that takes a list of numbers and ...
I have following source-code: This Prolog program splits a list List into two lists L and [R1|RN]. R1 is the first element of List which satisfies ...
Here is the question from Kaggle. I tried it using a while loop but I guess I am missing something basic here. The commented code using while loop i ...
Describing the game if you know what means word guessing dont bother to read Hey! I know I opened a question about that earlier but again Im stuck in ...
I want this function to generate instead of but don't know how to fix it. Do you know the solution? ...
I need to extract only unique sublists based on first element from a nested list. For e.g. My method is two break list into two lists and check for ...
I have this code below, requesting an api. Every ID in listID loops 4 times in the url. So if the listID = [1,2,3,4,5], the url will be : url = "https ...
I have a list of Data I get from dynamic inputs like this ones The list is dynamic and I'm Getting the values by input Name like this I want to ...
I have a main screen with a button that Pushes the user to a new screen to enter in data. The user can then input data and the data is mapped to a li ...
I wrote a simple code to check if a list is sorted or not. I have two questions: First, my result is wrong. I guess the issue is with following the li ...