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 count_up_to(n): count = 1 while count <= n: yield count count += 1 for num in count_up_to(5): print(num)
1
2
3
4
5