Posts by Pedro Paes Siniscalchi • 33 points
4 posts
-
0
votes0
answers22
viewsQ: Perform Statistical Operations on a CSV File
I’m making a program to perform some mathematical operations inside a CSV file, but I would not like to use pandas, I wanted to do it through a dictionary. Follow the code I’m doing to perform the…
pythonasked Pedro Paes Siniscalchi 33 -
1
votes4
answers2686
viewsQ: Create multiple lists containing random numbers
How can I create a code that generates 50 lists with 12 random elements? I’ve tried to use while to repeat a list generation function, but it did not work very well. import random def…
-
-4
votes3
answers101
viewsQ: Rules in python list creation
Good afternoon, I need to follow some rules when generating my list. Are these: 1.Have at least one repeated value 2.Have at least 6 unique values 3.All the numbers cannot be repeated How can I do…
-
-1
votes2
answers96
viewsQ: Python loop requesting data reentry
I have a problem in my Python code, it is giving loop. Every time I have to insert the list again to show the results. Could someone help me? Follows the code: import numpy as np import pandas as pd…