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(username, **details): print("Username:", username) print("Additional details:") for key, value in details.items(): print(" ", key + ":", value) my_function("emil123", age = 25, city = "Oslo", hobby = "coding")
Username: emil123
Additional details:
age: 25
city: Oslo
hobby: coding