# Na zaslon izpisujemo s print
x = 5
s = [1,2,3]

print ("Danes ima x vrednost", x, "in s vrednost", s)

print ("Danes ima x vrednost {0} in s vrednost {1}".format(x, s))

# Dokumentacija o format:
# https://docs.python.org/3.4/library/string.html#format-specification-mini-language
# Kako to preberemo?
