ToolNext
AI 程式碼解釋工具
AI 用中文解釋程式碼邏輯和功能
收藏
tools.ai-code-explain.codeInputLabel
tools.ai-code-explain.languageLabel
auto
▼
def fibonacci(n: int) -> list[int]: if n <= 0: return [] if n == 1: return [0] fib = [0, 1] for i in range(2, n): fib.append(fib[i-1] + fib[i-2]) return fib
tools.ai-code-explain.explainBtn
tools.ai-code-explain.apiKeyHint
工具说明
AI 程式碼解釋工具,貼上任意程式語言的程式碼,AI 自動用中文解釋程式碼邏輯、功能、關鍵步驟,幫助理解陌生程式碼或學習新技術。
ai
代码
解释
explain
编程
学习