Return a string which is the concatenation of the strings in the sequence `seq`. See Also -------- char.join
(self, seq)
| 941 | return isupper(self) |
| 942 | |
| 943 | def join(self, seq): |
| 944 | """ |
| 945 | Return a string which is the concatenation of the strings in the |
| 946 | sequence `seq`. |
| 947 | |
| 948 | See Also |
| 949 | -------- |
| 950 | char.join |
| 951 | |
| 952 | """ |
| 953 | return join(self, seq) |
| 954 | |
| 955 | def ljust(self, width, fillchar=' '): |
| 956 | """ |
no outgoing calls