📜  python for in range - Python 代码示例

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

代码示例6
# 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