Nexus Playground
Multi-Language IDE
main.py
print('Hello from Nexus Playground!') def calculate_factorial(n): if n == 0 or n == 1: return 1 return n * calculate_factorial(n - 1) print(f'Factorial of 5 is: {calculate_factorial(5)}')
Live Output
Output will render here when you click "Run Code"
Nexus AI Mentor
Hello! I'm your Nexus AI Mentor. I can help interpret errors or suggest optimisations for your Python 3 code.