Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
def my_function(*numbers): total = 0 for num in numbers: total += num return total print(my_function(1, 2, 3)) print(my_function(10, 20, 30, 40)) print(my_function(5))
6
100
5