# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') id = 225 name = 'Oštevilči' slug = 'Oštevilči' description = '''\

Napišite funkcijo numbers(xs), ki vrne seznam oblike [(0, xs[0]), (1, xs[1]), ..., (n, xs[n])]. Število n je enako dolžini seznama xs minus ena.

>>> numbers([4, 4, 4])
[(0, 4), (1, 4), (2, 4)]
>>> numbers([5, 1, 4, 2, 3])
[(0, 5), (1, 1), (2, 4), (3, 2), (4, 3)]

''' plan = ['''\

''', '''\

'''] hint = { 'final_hint': ['''\

Program je pravilen!

'''], }