Mostly Linux & Python syntax notes and hyperlinks.
>>> a,b="c","d" >>> a 'c' >>> b 'd' >>> a,b='f g'.split() >>> a 'f' >>> b 'g'
No comments:
Post a Comment