Question : According to the official Python page for the complexity of algorithms over time, the sequences list and set […]
Tag: python
Single Email field in Django User model
Question : I have a system that has a user registry and I’m using the lib django.contrib.auth.models to do this […]
How to read Yaml with Python?
Question : How do I read a file or Yaml code with Python? Is it necessary to install anything, or […]
What is the difference between a package and a module in Python?
Question : Is there a difference between a package and a module in Python? If there is a difference, can […]
running split () to form a list within another list
Question : I have the following list: [[‘a:/, b:/, w:/, g:/, f:/, d:/Downloads/Torrent/End, x:/files.2t, y:/files.1t’], [‘d:/Dropbox/project/rato_bat’], [‘data’]] But I wanted […]
Problem comparing strings and string being broken in two python rows
Question : I was creating a game that scrambles words, and the user has 6 attempts to guess what the […]
How to determine the index of elements in a list in another
Question : Work with python 2.7 . Considering the following: S_names=[“A”, “B”, “C”, “D”, “E”, “F”, “G”] S_values=[1,3,4,2,5,8,10] other=[“Z”,”W”,”B”,”S”,”A”,”E”,”X”,”T”,”D”,”G”,”L”,”C”,”F”] I […]
Annotate: Returning the cheapest product and vendor name (Django)
Question : Given the following table product;company;price AAAAA;forn1;395.69 BBBBB;forn1;939.45 CCCCC;forn1;480.33 DDDDD;forn1;590.59 EEEEE;forn1;847.69 AAAAA;forn2;227.31 BBBBB;forn2;375.90 CCCCC;forn2;602.18 DDDDD;forn2;615.02 EEEEE;forn2;845.20 AAAAA;forn3;120.00 BBBBB;forn3;379.30 CCCCC;forn3;227.98 […]
can not multiply sequence by non-int of type ‘float’
Question : Error: can not multiply sequence by non-int of type ‘float’ I’m facing this error, I know it […]
Read rows and columns by Python, by excel
Question : My question is if you have any resources so that I can read excel rows and columns. For […]