Return a string which is the concatenation of the strings in the sequence `seq`. See Also -------- char.join
(self, seq)
| 2451 | return isupper(self) |
| 2452 | |
| 2453 | def join(self, seq): |
| 2454 | """ |
| 2455 | Return a string which is the concatenation of the strings in the |
| 2456 | sequence `seq`. |
| 2457 | |
| 2458 | See Also |
| 2459 | -------- |
| 2460 | char.join |
| 2461 | |
| 2462 | """ |
| 2463 | return join(self, seq) |
| 2464 | |
| 2465 | def ljust(self, width, fillchar=' '): |
| 2466 | """ |