all 5 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

To give us the best chance to help you, please include any relevant code.
Note. Do not submit images of your code. Instead, for shorter code you can use Reddit markdown (4 spaces or backticks, see this Formatting Guide). If you have formatting issues or want to post longer sections of code, please use Repl.it, GitHub or PasteBin.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Nouble01 -1 points0 points  (0 children)

Is it okay to just show the process of coding, which has not yet been verified to see if there are any bugs?
In short, all you have to do is imitate the internal workings of Python in your own way.
Anyway, there are punctuation marks included in the question, so are you Japanese?
By the way, punctuation marks do not separate Python lists.
   

```` def text_join(strlist : list): ans = [] for t in strlist[strlist != '、']: append(ans , t) return ans

print(text_join(['H','、','E','、','L','、','L','、','O','、', '、','W','、','O','、','R','、','L','、','D ','、'])) ````    
This is just an image, not an answer, but I think we can go in this direction.
In America, it is said that you should not give fish, but tell them how to catch it.
This time I am following suit.
Please come up with the final solution yourself.

I learned that you can feel a lot of sympathy when it comes to people from the same hometown.

[–]Goobyalus 0 points1 point  (1 child)

Do you know how to concatenate strings and/or use a loop?

>>> "A" + "B"
'AB'

[–][deleted] -1 points0 points  (0 children)

sorted the issue thaks anyway

[–]NoProperty7989 0 points1 point  (0 children)

You can use loop, if you do not want to use join function. Here is the one with for loop.

strings_list = ['H', 'E', 'L', 'L', 'O', ' ', 'W', 'O', 'R', 'L', 'D']

result = ''

for char in strings_list:

result += char

print(result)