Write a function to calculate the electrostatic force between two charged particles with charge q1 and q2 at a distance d apart
Topic: Write a function to calculate the electrostatic force between two charged particles with charge q1 and q2 at a distance d apart
Solution
def cal_electrostatic_force(q1,q2,d): k = 9*(10**9) return (k*q1*q2)/(d**2)
List all Python Programs