SandeepU/Code-Explainer-P
0
๐ง Code Explainer โ Explain Any Python Code in Plain English
This Streamlit app uses the bigcode/starcoder model to generate step-by-step explanations for Python code snippets.
๐ Live Demo
Paste Python code in the text box and get a natural language explanation generated by an AI model trained on billions of lines of code.
โจ Example
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
