一键导入
python-tutorial
Python programming tutorial and best practices. Use when the user asks about Python basics, syntax, or wants to learn Python programming.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Python programming tutorial and best practices. Use when the user asks about Python basics, syntax, or wants to learn Python programming.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Design and build film-inspired visual work — websites AND PowerPoint presentations (.pptx). Use when the user asks for a cinematic site, movie-style landing page, director-inspired UI, film-noir, sci-fi, romance, thriller, action, animation, or a movie-like web aesthetic. Also use when the user asks to redesign a presentation, deck, or 簡報 with a cinematic or editorial visual system, or uses /cinematic-ui before any slide-related request. Trigger on cinematic site, cinematic deck, 電影感簡報, 重新設計簡報, editorial presentation, Wes Anderson slides, noir pptx, or any combination of film language with slides / deck / pptx / 簡報 / 投影片. Do not use for generic web design or generic slide design unless the user explicitly wants a film or director reference.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Guidance on when and how to use tools effectively. Use when the user asks about tools, API calls, or executing operations.
Provides systematic code review guidance. Use when the user asks to review code, check code quality, find bugs, or improve code structure.
Systematic debugging guidance for finding and fixing code issues. Use when the user reports a bug, error, unexpected behavior, or asks for help troubleshooting.
| name | python-tutorial |
| description | Python programming tutorial and best practices. Use when the user asks about Python basics, syntax, or wants to learn Python programming. |
This skill provides Python programming guidance and includes bundled resources for learning.
# Basic types
name = "Alice" # str
age = 25 # int
height = 1.75 # float
is_student = True # bool
# Collections
numbers = [1, 2, 3] # list
coords = (10, 20) # tuple
unique_ids = {1, 2, 3} # set
person = {"name": "Bob", "age": 30} # dict
# If statements
if age >= 18:
print("Adult")
elif age >= 13:
print("Teenager")
else:
print("Child")
# Loops
for num in range(5):
print(num)
while condition:
# do something
pass
def greet(name: str) -> str:
"""Greet someone by name."""
return f"Hello, {name}!"
# Lambda functions
square = lambda x: x ** 2
class Person:
def __init__(self, name: str, age: int):
self.name = name
self.age = age
def greet(self) -> str:
return f"Hi, I'm {self.name}"
This skill includes bundled resources:
To access resources, mention you want to see examples or reference materials.