📌  相关文章
📜  str = "这篇文章是用{}写的" print (str.format("Python")) - Python代码示例

📅  最后修改于: 2022-03-11 14:47:18.059000             🧑  作者: Mango

代码示例1
ma_liste = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
def ma_fonction(x):
  for x in range(len(ma_liste)):
    if x % 2 == 0:
      print(x)
ma_fonction(1)