Titles quite self explanatory, im Struggling to perform mathematical operations on a value in python. So i basically get data from yahoo finance and am trying to perform operations on it
A = df['Total Assets'] #Isolates Assets
print(A) #Prints Assets
B = A[3] #Finds third element of that
print(B) #Prints it
Output = int(float(B))
Output*3
So simply in this example i have '1,376,402' and i want to multiply it by 3.
Any help is incredibly appreciated.