当前分类:300例题>>正文

Python示例:使用字符串格式打印元组

来源:互联网   更新时间:2023年6月23日  

Python 示例

编写一个 Python示例,使用字符串格式打印元组。以下是使用字符串格式打印元组项的方法。

# Print Tuple using string formatting

numTuple = (20, 40, 60, 80, 100, 120, 140)
print(numTuple)

print("Tuple Items are = {0}".format(numTuple))

print("Tuple Items are = %s" %(numTuple,))

print("Tuple Items are = %s" %(numTuple))

本文固定链接:https://6yhj.com/leku-p-4413.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 自媒体