![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: Converting tuple to String
From: Daniel Nogradi <nogradi@gmail.com>
Date: Sun Apr 30 2006 - 17:41:18 CEST
> Is their a command to convert a tuple to string? e.g.
Try
one_big_string = ''.join( xyz )
Hope this helps.
|