Concept

Python Code Nodes on 1Cademy

You can write Python code in a code node. For this purpose, you should enter your code in triple backthicks (```). You should proceed the beginning 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 2021-04-14

Tags

1Cademy