I have a series of data that I would like to organize by title, example;
movies = [
'movie': [
'legenda' [
'dub', 'leg', 'nac'
],
'time': [
1, 2, 3, 4, 5
]
]
....
]
I've tried dict()...
Can anyone tell me why in the first iteration the assignment retangulo=retangulo() works fine, but in the second it does not?
This error appears in Pycharm:
is not callable
Code:
from MDvalidateDATA import validateDATA
c...
I was trying to create a code that created a square array of n sides and then added each side to find out what has the different sum,
in the sum part I got half locked.
I tried to make this code but it did not work. Can anyone help me?
n...
I have a for which generates a list of data list
lista[[...], [...]]
Within "daughter" lists, you may or may not have other lists
lista[['dado11', 'dado12', [link1]],['dado21', 'dado22', [link2]]
This data that I represented as a link...
I need a system that identifies a person (exactly a person) through rules (in this case, habits of such a person) but my AI knowledge is very shallow. Is there any appropriate technique for this? Preferably, it is applicable in languages such as...
The application in django was working normally until I was putting django-comments, I first installed it with setup.py that came along, I believe that this is what is causing the problem, then I put it together with the project folder and refere...
Hello, when I try to add new values to a ods worksheet, it loses all its "style" and is left with values only. Follow the code:
import pyexcel
sheet = pyexcel.get_sheet(file_name="dados.ods")
sheet.row += [0, 0, 0]
sheet.save_as("examp...
I'm learning Python and I've been creating txt files, adding things and rewriting them but I have not been able to modify a specific line, how can I do that? and I also wanted to know how to find out what line a string specifies this, I can alre...
I tried to use Visual Studio together with the tools for Python , but when I put:
print("Hello World")
and pressing F5 it runs smoothly.
However, when boto:
print("olá") it gives the following error:
File "C:...