Last active
August 3, 2024 12:37
-
-
Save rajivmehtaflex/e49ab664e77898ac44ae1c51168d729c to your computer and use it in GitHub Desktop.
IPython-VSCode-Base-Suggestion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In Visual Studio Code, the keyboard shortcuts to move to the previous (and next) cursor location are: | |
For Windows and Linux: | |
Go to previous location: Ctrl + Alt + - (minus) | |
Go to next location: Ctrl + Shift + - (minus) | |
For macOS: | |
Go to previous location: Ctrl + - (minus) | |
Go to next location: Ctrl + Shift + - (minus) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%% | |
i='Gajraj' | |
print(i) | |
# Alternate Options | |
#!/usr/bin/env python | |
# coding: utf-8 | |
# In[ ]: | |
print('Gajaraj') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment