JB – Inflect

Number to words

import inflect
inflector=inflect.engine()
print(inflector.number_to_words(8675309))

Posted in Uncategorized | Leave a comment

JE – Math

Posted in Uncategorized | Leave a comment

JU – Feh

Display an image without a border

feh --borderless /home/teresita/Downloads/48773.jpg &

Posted in Uncategorized | Leave a comment

K8 – Triangle

Calculate the area of any triangle


#!/usr/bin/python3
import sys,math
a=float(sys.argv[1])
b=float(sys.argv[2])
c=float(sys.argv[3])
peri=a+b+c
area=math.sqrt((a+b+c)*(a+b-c)*(a-b+c)*(-a+b+c))/4
print("Perimeter=",peri)
print("Area=",area)
Posted in Uncategorized | Leave a comment