🐍 Python Kernel Service
Not Connected
Mode:
Worker (Recommended)
Main Thread
+ New Kernel
Connect to Hypha
Python Code
No Kernel
↻
▶ Run
■ Interrupt
↻ Restart
🗑
# Welcome to Web Python Kernel! import numpy as np import matplotlib.pyplot as plt # Generate some data x = np.linspace(0, 10, 100) y = np.sin(x) # Create a plot plt.figure(figsize=(10, 6)) plt.plot(x, y, label='sin(x)', linewidth=2) plt.plot(x, np.cos(x), label='cos(x)', linewidth=2) plt.title('Trigonometric Functions') plt.xlabel('x') plt.ylabel('y') plt.legend() plt.grid(True, alpha=0.3) plt.show() print("Plot generated successfully!")
Output
Clear
Service registered at: