Posted in Python

Ispis tablica
{Python}

  https://github.com/gregbanks/python-tabulate pip install tabulate from tabulate import tabulate tablica=[] zaglavlje=[ “Proizvod\n” , “Stara\ncijena\n” , “Nova\ncijena\n” ] tablica.append([“Jedan”,100,99]) tablica.append([“Dva”,200.23,199.99]) tablica.append([“Tri”,333.3,299.9]) print ( tabulate ( tablica…