专业编程基础技术教程

网站首页 > 基础教程 正文

有哪些好玩的Python代码

ccvgpt 2025-01-05 16:05:20 基础教程 2 ℃

#有哪些好玩的Python代码#

1. 简单的文本艺术

使用一些简单的 Python 代码可以生成有趣的文本图案,如 ASCII 艺术。

有哪些好玩的Python代码

python
def print_star_pattern(n):
    for i in range(n):
        print(' ' * (n - i - 1) + '*' * (2 * i + 1))

print_star_pattern(5)


2. 数字猜谜游戏

这是一个简单的文本猜谜游戏,你可以通过这个项目学习 Python 的基本输入输出操作。

python
import random

def guess_number():
    number_to_guess = random.randint(1, 100)
    attempts = 0
    while True:
        user_guess = int(input("猜一个1到100之间的数字:"))
        attempts += 1
        if user_guess < number_to_guess:
            print("再高一点!")
        elif user_guess > number_to_guess:
            print("再低一点!")
        else:
            print(f"恭喜你,猜对了!你一共猜了{attempts}次。")
            break


3. 数独生成器

利用 Python,可以轻松生成一个简单的数独游戏矩阵。

python
import random

def generate_sudoku():
    base = 3
    side = base * base

    # Pattern for a baseline valid solution
    def pattern(r, c): return (base*(r % base)+r//base+c) % side

    # Randomize rows, columns and numbers (of valid base pattern)
    def shuffle(s): return random.sample(s, len(s))
    rBase = range(base)
    rows = [g*base + r for g in shuffle(rBase) for r in shuffle(rBase)]
    cols = [g*base + c for g in shuffle(rBase) for c in shuffle(rBase)]
    nums = shuffle(range(1, base*base+1))

    # Produce board using randomized baseline pattern
    board = [[nums[pattern(r, c)] for c in cols] for r in rows]

    # Remove random numbers from the board to create a puzzle
    squares = side*side
    empties = squares * 3//4
    for p in random.sample(range(squares), empties):
        board[p//side][p % side] = 0

    return board

def print_sudoku(board):
    for row in board:
        print(" ".join(str(num) if num != 0 else '.' for num in row))

sudoku_board = generate_sudoku()
print_sudoku(sudoku_board)


4. 简单的屏幕保护程序

这是一个利用 Python 的 turtle 模块绘制彩色螺旋的代码示例。

python
import turtle
import colorsys

def draw_spiral():
    turtle.speed(0)
    turtle.bgcolor("black")
    turtle.tracer(0, 0)

    n = 36  # Number of rotations
    hue = 0.0
    for i in range(360):
        color = colorsys.hsv_to_rgb(hue, 1.0, 1.0)
        turtle.pencolor(color)
        turtle.forward(i)
        turtle.left(59)
        hue += 1/n
        if hue > 1:
            hue -= 1

    turtle.hideturtle()
    turtle.done()

draw_spiral()


5. 简单的网络爬虫

使用 Python 的 requestsBeautifulSoup 来制作一个简单的网页爬虫,获取网页的标题。

python
import requests
from bs4 import BeautifulSoup

def fetch_webpage_title(url):
    response = requests.get(url)
    if response.status_code == 200:
        soup = BeautifulSoup(response.text, 'html.parser')
        title = soup.title.string
        print(f"网页标题为: {title}")
    else:
        print("无法获取网页内容")

fetch_webpage_title('https://www.python.org')


6. 动态挂钟

利用 Python 的 tkinter 模块制作一个动态更新的简单时钟。

python
import tkinter as tk
import time

def update_clock():
    time_string = time.strftime('%H:%M:%S')
    clock_label.config(text=time_string)
    root.after(1000, update_clock)

root = tk.Tk()
root.title("简单挂钟")

clock_label = tk.Label(root, font=('Helvetica', 48), bg='black', fg='white')
clock_label.pack(anchor='center')

update_clock()

root.mainloop()


这些示例项目不仅有趣,而且能帮助你在实践中提高 Python 编程技能。它们涵盖了基本的语言特性、模块使用及多种领域应用的基础。通过这些项目进行扩展和改进,你可以激发更多的创造力,并在学和用的过程中找到乐趣。

最近发表
标签列表