Learn Before
Concept
Python Code Nodes on 1Cademy
You can write Python code in a code node. To do so, enter your code inside triple backticks (```), preceding the opening backticks with the string "Python". For example:
def fib(n): a, b = 0, 1 while a < n: print(a, end=' ') a, b = b, a+b print() fib(1000)
1
3
Updated 2026-07-06
Tags
1Cademy