Python 官方文档:入门教程 => 点击学习
python教程: while循环20例 介绍 循环是计算机编程中最常用的结构之一。在Python中,有两种类型的循环:while循环和for循环。在本文中,我们将专注于while循环并提供20个实用
循环是计算机编程中最常用的结构之一。在Python中,有两种类型的循环:while循环和for循环。在本文中,我们将专注于while循环并提供20个实用示例,帮助您了解while循环的基本概念和用法。
这是一个最简单的while循环,它只打印数字1到5:
i = 1while i <= 5: print(i) i += 1
这个例子展示了如何创建一个无限循环,需要使用break
语句来退出循环:
while True: x = input("输入 'stop' 来停止循环: ") if x == 'stop': break
continue
语句用于跳过当前循环的剩余语句并继续下一次循环。在下面的示例中,我们跳过了所有奇数并打印了所有偶数:
i = 0while i < 10: i += 1 if i % 2 != 0: continue print(i)
在Python中,循环中的else
语句与if
语句中的else
语句相似。它们在循环完成时执行。在下面的示例中,我们使用else
语句在循环完成时打印一条消息:
i = 1while i <= 5: print(i) i += 1else: print("循环已完成")
在下面的示例中,我们使用while循环计算输入数字的阶乘:
num = int(input("输入一个数字: "))factorial = 1i = 1while i <= num: factorial *= i i += 1print(f"{num} 的阶乘是 {factorial}")
在下面的示例中,我们使用while循环计算斐波那契数列:
num = int(input("输入一个数字:"))a, b = 0, 1while b < num: print(b) a, b = b, a + b
在下面的示例中,我们使用while循环查找列表中的元素:
fruits = ["苹果", "香蕉", "樱桃", "葡萄"]i = 0while i < len(fruits): print(fruits[i]) i += 1
在下面的示例中,我们使用while循环实现石头剪刀布游戏:
import randomprint("欢迎来到石头剪刀布游戏!")options = ["石头", "剪刀", "布"]computer_choice = random.choice(options)while True: player_choice = input("请输入石头、剪刀或布:") if player_choice not in options: print("输入无效,请重新输入。") continue print(f"电脑的选择是:{computer_choice}") if player_choice == computer_choice: print("平局!") elif (player_choice == "石头" and computer_choice == "剪刀") or (player_choice == "剪刀" and computer_choice == "布") or (player_choice == "布" and computer_choice == "石头"): print("你赢了!") else: print("你输了!") break
在下面的示例中,我们使用while循环实现猜数字游戏:
import randomprint("欢迎来到猜数字游戏!")number = random.randint(1, 20)guesses = 0while guesses < 6: guess = int(input("请输入一个数字:")) guesses += 1 if guess < number: print("你猜的数字太小了。") elif guess > number: print("你猜的数字太大了。") else: print(f"恭喜你,你猜对了!你用了 {guesses} 次猜中了数字。") breakelse: print(f"很遗憾,你没有猜中数字。数字是 {number}。")
在下面的示例中,我们使用while循环实现加法练习:
import randomprint("欢迎来到加法练习!")correct_answers = 0total_questions = 0while True: num1 = random.randint(1, 10) num2 = random.randint(1, 10) answer = int(input(f"{num1} + {num2} = ")) total_questions += 1 if answer == num1 + num2: correct_answers += 1 print("回答正确!") else: print("回答错误。") if input("是否继续?(y/n)") == "n": breakprint(f"你回答了 {total_questions} 道题目,其中 {correct_answers} 道题目回答正确。")
在下面的示例中,我们使用while循环实现倒计时:
import timecountdown = 10while countdown > 0: print(countdown) time.sleep(1) countdown -= 1print("时间到!")
在下面的示例中,我们使用while循环实现打印图案:
i = 1while i <= 5: print("*" * i) i += 1
在下面的示例中,我们使用while循环实现计数器:
counter = 0while True: print(counter) counter += 1 if counter == 10: break
在下面的示例中,我们使用while循环实现密码验证:
passWord = "bazinga"while True: attempt = input("请输入密码:") if attempt == password: print("密码正确!") break else: print("密码错误,请重试。")
在下面的示例中,我们使用while循环实现文件读取:
with open("example.txt") as f: line = f.readline() while line: print(line.strip()) line = f.readline()
在下面的示例中,我们使用while循环实现文件写入:
with open("example.txt", "w") as f: while True: line = input("请输入一行文本:") if line == "quit": break f.write(line + "\\n")
在下面的示例中,我们使用while循环实现字符串反转:
text = "Hello, World!"reversed_text = ""i = len(text) - 1while i >= 0: reversed_text += text[i] i -= 1print(reversed_text)
在下面的示例中,我们使用while循环实现列表反转:
fruits = ["苹果", "香蕉", "樱桃", "葡萄"]reversed_fruits = []i = len(fruits) - 1while i >= 0: reversed_fruits.append(fruits[i]) i -= 1print(reversed_fruits)
在下面的示例中,我们使用while循环实现字符串切片:
text = "Hello, World!"substring = ""start = 7end = 12i = startwhile i < end: substring += text[i] i += 1print(substring)
在下面的示例中,我们使用while循环实现列表切片:
fruits = ["苹果", "香蕉", "樱桃", "葡萄"]sliced_fruits = []start = 1end = 3i = startwhile i < end: sliced_fruits.append(fruits[i]) i += 1print(sliced_fruits)
在本文中,我们介绍了Python中的while循环及其用法,并提供了20个实用示例。这些示例可以帮助您更好地理解while循环的概念,并在实践中应用它们。希望本文对您学习Python编程有所帮助!
来源地址:https://blog.csdn.net/weixin_46121540/article/details/129235403
--结束END--
本文标题: Python教程: while循环20例
本文链接: https://lsjlt.com/news/413655.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0