fork download
  1. def rezystancja(U,I):
  2. return U/I
  3. print("R=U/I: ", rezystancja(230,0.4), "Ω")
  4.  
  5. def U():
  6. R = 1000
  7. I = 2
  8. return I*R
  9. print("obliczamy U = ",U(),"V")
  10.  
Success #stdin #stdout 0.04s 9684KB
stdin
1000
2
stdout
R=U/I:  575.0 Ω
obliczamy U =  2000 V