hourprices = [3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 18, 20, 25]
material = [1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5]

mat_cost = 5 * 7 * 0.01
hours = 1

print "[[!table class=\"table table-hover\" data=\"\"\""

print "Preis | " + " | ".join(["%d CHF/h" % x for x in hourprices])

for factor in material:
  print ("%sx Material | " % (factor) +
         " | ".join(["%.02f" % round(x * hours + factor * mat_cost, 2)
                     for x in hourprices]))

print "\"\"\"]]"