Horje
pythagoras theorem solver python Code Example
pythagoras theorem solver python
import math
a = int(input("a = "))
b = int(input("b = "))
c = str(math.sqrt((a * a) + (b * b)))
if ".0" in c:
  c = int(float(c))
else:
  c = float(c)
print("c = " + str(c))




Python

Related
discord python send message every minute Code Example discord python send message every minute Code Example
data parsing app python Code Example data parsing app python Code Example
python get next item from generator Code Example python get next item from generator Code Example
UTC to ISO 8601 with Local TimeZone information without microsecond (Python 3): Code Example UTC to ISO 8601 with Local TimeZone information without microsecond (Python 3): Code Example
django dump previous migrations Code Example django dump previous migrations Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11