Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
def my_function(a, b, /, *, c, d): print(a + b + c + d) my_function(5, 6, c = 7, d = 8)
26