About 48,200 results
Open links in new tab
  1. Python range () 函数 | 菜鸟教程

    Python range () 函数用法 Python 内置函数 python2.x range () 函数可创建一个整数列表,一般用在 for 循环中。 注意:Python3 range () 返回的是一个可迭代对象(类型是对象),而不是列表类型, 所以 …

  2. range(英语单词)_百度百科

    8.N-COUNT A range or kitchen range is a large metal device for cooking food using gas or electricity. A range consists of a grill, an oven, and some gas or electric burners.

  3. range是什么意思_range的翻译_音标_读音_用法_例句_爱词霸在线词典

    Such food service operators range from snack machines to large institutional catering ventures, but most of these businesses are known in the trade as “horeca”: hotels, restaurants and cafes.

  4. RANGE中文 (简体)翻译:剑桥词典 - Cambridge Dictionary

    Our views coincide on a range of subjects. As an actor he could communicate a whole range of emotions. This range of clothing is specially designed for shorter women. There was a range of …

  5. range函数用法完全解读 - CSDN博客

    Apr 17, 2025 · 而 range () 方法就不同了,它接收的参数不是可迭代对象,本身是一种初次加工的过程,所以设计它为可迭代对象,既可以直接使用,也可以用于其它再加工用途。 例如,zip () 等方法就 …

  6. 04 Python range () 函数 - 知乎

    Feb 29, 2024 · range() 是 Python 中非常有用的一个内置函数,它能够在多种场景下灵活生成数字序列。 通过调整其参数,可以轻松实现正序、倒序以及按指定步长生成序列的需求。 在循环和迭代操作 …

  7. Python中的range ()函数详解和示例 - 极客教程

    Python中的range ()函数详解和示例 Python中的range ()函数是一个用来生成数字序列的函数,常用于循环中指定循环次数。 在本文中,我们将深入探讨range ()函数的用法、参数以及示例代码,并演示如 …

  8. range 函数 | Python 学习 - GitHub Pages

    Aug 12, 2024 · range 函数 在 Python 中, range() 函数用于生成一系列数字。 它通常用于控制循环的次数,尤其是在 for 循环中。 range() 函数可以生成从起始值到结束值(不包括结束值)的整数序列。 …

  9. Python range () 函数示例 - freeCodeCamp.org

    Nov 6, 2023 · 在这篇文章中,你将通过一些代码实例学习如何在 Python 中使用 range () 函数。 Python 中的 range () 函数是什么? range () 函数语法详解 Python 内置的 range () 函数主要在处理 for 循环 …

  10. range函数用法完全解读 - 文章 - 开发者社区 - 火山引擎

    Jun 21, 2024 · …due to the fact that range objects can only represent sequences that follow a strict pattern and repetition and concatenation will usually violate that pattern.