📜  for j in range python 代码示例

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

代码示例3
# if numbers are same in the range function then,
# the range function outputs empty range
# this is because, there are no integers b/w n and n
for i in range(1,1):
  print("runs")

# prints nothing