Advertisement
Guest User

Lekcja 6 Zadanie 1

a guest
Feb 24th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. import math
  2. def pola(a):
  3.     pole = (a**2 * math.sqrt(3)) / 4
  4.     print('Pole trójkąta = ' + repr(pole))
  5.  
  6. pola(10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement