[Solved] How do I add an inventory remaining counter? [closed]

You never define item_type_qty. All you ever do with it in your class is this: self.item_type_qty[[“Pants”,20],[“Dress”,20]] Which has no effect, since it looks like you’re trying to get a value out using weird indexes. If you meant to assign it, do it like this: self.item_type_qty = [[“Pants”,20],[“Dress”,20]] However, you’ll run into another problem with this … Read more

[Solved] Running Django in Pycharm 17.1

In field where you have runserver write: http://127.0.0.1:8000/. Don’ forget to enable Django support in Settings/Language&Frameworks/Django and set settings file, manage script and project root. Also make shure that you choose right Python interpreter(in Django server configuration) – the one which has installed Django. The easiest way to check if you have right interpreter chosen … Read more

[Solved] regex multiple string match in a python list

Here’s a solution using regex if that’s what you really need. I search to see if any of your 3 substrings are present inside any given string from the list. Using https://docs.python.org/3/library/re.html as the Python regex library. import re for word in wordList: m = re.search(‘.*(ra|dec|lat).*’, word) if m: <youve matched here> solved regex multiple … Read more

[Solved] country convert to continent

In the second snippet, you pass list of countries to country_to_continent function, which according to the first example, receives a single country as a parameter. If you want to convert the whole column in your Dataframe, try instead: print(df[“country”].apply(lambda x: country_to_continent(x))) solved country convert to continent

[Solved] obtaining substring from square bracket in a sentence

Here, I tried solving it. Here is my code : bracket_string = ‘[apple]and[orange]and[apple]again!’ def find_tags(string1): start = False data=”” data_list = [] for i in string1: if i == ‘[‘: start = True if i != ‘]’ and start == True: if i != ‘[‘: data += i else: if data != ”: data_list.append(data) data=”” … Read more

[Solved] Count total lines with open in Python

You are increasing your total line count incrementally with each processed line. Read in the full file into a list, then process the list. While processing the list, increase a counter thats “the current lines nr” and pass it to the output function as well. The len() of your list is the total line count … Read more

[Solved] How do you count the values in a 2d list [closed]

You can use list comprehensions to do this. In this case, you can check the len of each sublist, and use that to filter out which sublists you want to keep/discard. >>> df = [[2,4,6,7],[3,4,],[2,4,6,8,12,24],[3,5,7,333,450],[4,20]] >>> [i for i in df if len(i) > 3] [[2, 4, 6, 7], [2, 4, 6, 8, 12, 24], … Read more

[Solved] Python urllib2 or requests post method [duplicate]

This is not the most straight forward post request, if you look in developer tools or firebug you can see the formdata from a successful browser post: All that is pretty straight forward bar the fact you see some : embedded in the keys which may be a bit confusing, simpleSearchSearchForm:commandSimpleFPSearch is the key and … Read more