myroot

Results 6 issues of myroot

https://github.com/yanfengneng/My_Json 欢迎交流批评指正。

以下为原书内容: ```python str0 = "ABC" tuple0 = ("a", "b", "c") list0 = ["1", "2", "3"] print("--".join(str0)) print("--".join(tuple0)) print("--".join(list0)) print("".join(list0)) >>> a--b--c 1--2--3 A--B--C ABC ``` 其中打印结果错误,应为: ```python >>> A--B--C a--b--c...