将单词插入python中的文件时,未能遵循单词的顺序
我们有一个带有阿拉伯语单词的列表
list[0]="هذه"
list[1]="هذا"
list[2]="ذلک"
,我们需要按索引顺序写入该列表的每个项目,然后通过|将其分开。书面文件的字符示例是
list[0]|list[1]|list[2]
并且在问题中必须是
第一个单词要写在文件中:åذ
第二个单词要写在文件中:åذ
和要写入文件中的第三个单词:ذ。
the the的输出相似,
هذه|هذا|ذلک
必须先于word word,并且必须是最后一个单词,但必须是最后一个,但是逆转了
代码是
tf = open("temp file.txt", "w",encoding="utf8")
tf.write("هذه")
tf.write('|')
tf.write("هذا")
tf.write('|')
tf.write("ذلک")
tf.write('|')
我该如何修复它?
we have a list with arabic words for exmple
list[0]="هذه"
list[1]="هذا"
list[2]="ذلک"
and we need write each item of that list to a text file in index order and separate them by | character example of written file is
list[0]|list[1]|list[2]
and in example of question output must be
The first word to be written in the file : هذه
The second word to be written in the file :هذا
And the third word to be written in the file :ذلک
but output of file is similar below
هذه|هذا|ذلک
the هذه word must be first and ذلک must be last but it is reverse
the code is
tf = open("temp file.txt", "w",encoding="utf8")
tf.write("هذه")
tf.write('|')
tf.write("هذا")
tf.write('|')
tf.write("ذلک")
tf.write('|')
how can i fix it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题使用索引顺序,但原始代码使用了文字。
输出
The question said use index order, but the original code used literals.
Output