网站首页 > 基础教程 正文
1. 简单的文本艺术
使用一些简单的 Python 代码可以生成有趣的文本图案,如 ASCII 艺术。
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 的 requests 和 BeautifulSoup 来制作一个简单的网页爬虫,获取网页的标题。
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 编程技能。它们涵盖了基本的语言特性、模块使用及多种领域应用的基础。通过这些项目进行扩展和改进,你可以激发更多的创造力,并在学和用的过程中找到乐趣。
- 上一篇: python 时间解析
- 下一篇: python就该这么学:python快速获取系统时间
猜你喜欢
- 2025-01-05 一文搞懂python日期时间处理-datetime模块
- 2025-01-05 如何实现Python+selenium在指定时间自动运行程序
- 2025-01-05 Python模块datetime、calendar、logging、argparse、re用法
- 2025-01-05 Python常见模块机os、sys、pickle、json、time用法
- 2025-01-05 Python版的迷你程序——年月日时分秒
- 2025-01-05 用于清理数据的 5 个简单有效 Python 脚本
- 2025-01-05 python教程从基础到精通,第9课—日期与时间
- 2025-01-05 学姐教你:用Python设计生日提醒小助手,永远不会忘记重要日子啦
- 2025-01-05 ABB机器人与Python通讯
- 2025-01-05 python内置模块datetime.date类详细介绍
- 01-09Oracle数据库面试题汇总
- 01-09Oracle AWR解析-Report Summary
- 01-09想要成为数据分析师,这些Excel必备知识点你得掌握
- 01-09java开发中常用Oracle函数实例总结比较,当真不少
- 01-09DriveWorks其实是这么回事
- 01-09EXCEL做数据分析,学会这些就入门了
- 01-09一场pandas与SQL的巅峰大战(六)
- 01-09Oracle数据库知识 day01 Oracle介绍和增删改查
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)