Δημοσιεύτηκε: 18 Νοέμ 2011, 15:22
από pros
Κώδικας: Επιλογή όλων
sterios@desktop:~$ python -c "print 'hello {0}'.format('world')"
hello world


Κώδικας: Επιλογή όλων
sterios@desktop:~$ python -c "print 'hello {}'.format('world')"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ValueError: zero length field name in format


Το βρήκες τι φταίει, απ' ότι καταλαβαίνω...

Κώδικας: Επιλογή όλων
sterios@desktop:~$ python
Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>