ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

Python - Dont forget the , when define a tuple

Python - Dont forget the , when define a tuple

 

root_ids = ('abcd')
root_ids_tuple = ('abcd',)
root_ids_list = ['abcd']print(type(root_ids))
print('---------------------------')
print([f"'{item}'" for item in root_ids])
print('---------------------------')
print([f"'{item}'" for item in root_ids_tuple])
print('---------------------------')
print([f"'{item}'"  for item in root_ids_list])

 

PS D:\VSCodeWorkspace\ZZH> python test.py
<class 'str'>
---------------------------
["'a'", "'b'", "'c'", "'d'"]
---------------------------
["'abcd'"]
---------------------------
["'abcd'"]

 

返回列表