<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Visual Studio Archives - Be on the Right Side of Change</title>
	<atom:link href="https://blog.finxter.com/category/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.finxter.com/category/visual-studio/</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2021 12:15:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.finxter.com/wp-content/uploads/2020/08/cropped-cropped-finxter_nobackground-32x32.png</url>
	<title>Visual Studio Archives - Be on the Right Side of Change</title>
	<link>https://blog.finxter.com/category/visual-studio/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Comment Out a Block of Code in Python?</title>
		<link>https://blog.finxter.com/how-to-comment-out-a-block-of-code-in-python/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Thu, 29 Jul 2021 11:36:12 +0000</pubDate>
				<category><![CDATA[PyCharm]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python String]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=33416</guid>

					<description><![CDATA[<p>Problem Formulation Python has two ways to comment out a block of code: The hashtag symbol # tells the Python interpreter to ignore the rest of the line. To manually commenting out a block of code by inserting a hashtag symbol in front of every line is cumbersome. The multi-line string triple quotes '''...''' or ... <a title="How to Comment Out a Block of Code in Python?" class="read-more" href="https://blog.finxter.com/how-to-comment-out-a-block-of-code-in-python/" aria-label="Read more about How to Comment Out a Block of Code in Python?">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/how-to-comment-out-a-block-of-code-in-python/">How to Comment Out a Block of Code in Python?</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Problem Formulation</h2>



<p>Python has two ways to comment out a block of code: </p>



<ul class="wp-block-list"><li>The <strong>hashtag symbol <code>#</code></strong> tells the Python interpreter to ignore the rest of the line. To manually commenting out a block of code by inserting a hashtag symbol in front of every line is cumbersome.</li><li>The multi-line string triple quotes <code>'''...'''</code> or <code>"""..."""</code> can be inserted around a given code block. However, Python takes those triple-quote strings as <a href="https://blog.finxter.com/python-one-line-docstring/" title="Python One Line Docstring" target="_blank" rel="noreferrer noopener">docstrings</a>. </li></ul>



<p>You can see both examples here:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group=""># Block Comment Method 1
# x = 1
# y = 2
# print(x + y)</pre>



<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">'''
Block Comment Method 2
x = 1
y = 2
print(x + y)
'''</pre>



<h2 class="wp-block-heading">Solution Overview Table</h2>



<p><strong>So, how to comment out a block of Python code?</strong></p>



<p>Have a look at the following table that showcases the shortcut to toggle block comments for a given selection of text:</p>



<figure class="wp-block-table is-style-stripes"><table><thead><tr><th>Editor</th><th>Shortcut Block Comment</th><th>Shortcut Block Uncomment</th></tr></thead><tbody><tr><td>Eclipse</td><td><code>CTRL + /</code></td><td><code>CTRL + /</code> </td></tr><tr><td>PyDev</td><td><code>CTRL + /</code></td><td><code>CTRL + /</code> </td></tr><tr><td>PyCharm</td><td><code>CTRL + /</code> </td><td><code>CTRL + /</code> </td></tr><tr><td>Notepad++</td><td><code>CTRL + K</code></td><td><code>CTRL + SHIFT + K</code> </td></tr><tr><td>IDLE</td><td><code>ALT + 3</code></td><td><code>ALT + 4</code></td></tr></tbody></table><figcaption><strong>Table</strong>: Shortcuts to block-comment and -uncomment a given text selection for different Python editors.</figcaption></figure>



<p>Let&#8217;s dive into the most popular editors one-by-one.</p>



<h2 class="wp-block-heading">PyCharm</h2>



<p><a href="https://blog.finxter.com/pycharm-a-simple-illustrated-guide/" title="PyCharm – A Simple Illustrated Guide" target="_blank" rel="noreferrer noopener">PyCharm </a>is one of the most popular Python editors. Do you want to become a PyCharm wizard and boost your coding productivity in Python? Check out our Finxter Academy course here:</p>



<p><a href="https://academy.finxter.com/university/pycharm/" target="_blank" rel="noreferrer noopener" title="https://academy.finxter.com/university/pycharm/">*** Mastering the PyCharm IDE for Maximum Python Productivity ***</a></p>



<figure class="wp-block-image size-full"><a href="https://academy.finxter.com/university/pycharm/" target="_blank" rel="noopener"><img fetchpriority="high" decoding="async" width="954" height="497" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-26.png" alt="" class="wp-image-33431" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-26.png 954w, https://blog.finxter.com/wp-content/uploads/2021/07/image-26-300x156.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-26-768x400.png 768w" sizes="(max-width: 954px) 100vw, 954px" /></a></figure>



<p>Here&#8217;s a screenshot of my PyCharm editor with some basic code:</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img decoding="async" width="1024" height="449" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-27-1024x449.png" alt="" class="wp-image-33432" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-27-1024x449.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/07/image-27-300x131.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-27-768x337.png 768w, https://blog.finxter.com/wp-content/uploads/2021/07/image-27.png 1223w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>



<p>To block-comment these three lines in PyCharm, select them with your mouse and hit <code>CTRL + /</code> for a standard English keyboard layout:</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img decoding="async" width="1024" height="468" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-28-1024x468.png" alt="" class="wp-image-33434" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-28-1024x468.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/07/image-28-300x137.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-28-768x351.png 768w, https://blog.finxter.com/wp-content/uploads/2021/07/image-28.png 1220w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption><strong>Figure</strong>: <code>CTRL + /</code> to block-comment in PyCharm.</figcaption></figure></div>



<p>This inserts the hashtag symbol in front of every selected line. In German and Swedish layouts, this doesn&#8217;t work because the / symbol can only be accessed using <code>SHIFT + 7</code>, but <code>CTRL + SHIFT + 7</code> is already reserved for another shortcut for <em>&#8220;Toggle numbered Bookmark&#8221;</em>. Therefore, you need to block-comment using the menu:</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="403" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-29-1024x403.png" alt="" class="wp-image-33435" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-29-1024x403.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/07/image-29-300x118.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-29-768x302.png 768w, https://blog.finxter.com/wp-content/uploads/2021/07/image-29.png 1220w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption> <strong>Figure</strong>: Menu-based block-comment for German and Swedish keyboard layouts. </figcaption></figure></div>



<p>If you don&#8217;t like this menu-based approach, you can simply redefine the keyboard shortcuts as described <a href="https://www.jetbrains.com/help/pycharm/configuring-keyboard-and-mouse-shortcuts.html" target="_blank" rel="noreferrer noopener" title="https://www.jetbrains.com/help/pycharm/configuring-keyboard-and-mouse-shortcuts.html">here</a>.</p>



<p>To uncomment the block, just apply the same procedure again, i.e., either by shortcut or by menu selection, applying <code>CTRL + /</code> to toggle the block comment. </p>



<h2 class="wp-block-heading">Notepad++</h2>



<p>After choosing your programming language to Python, Notepad++ automatically highlights the code in the editor. </p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="379" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-19-1024x379.png" alt="Notepad++" class="wp-image-33420" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-19-1024x379.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/07/image-19-300x111.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-19-768x284.png 768w, https://blog.finxter.com/wp-content/uploads/2021/07/image-19.png 1033w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure></div>



<p>You can comment it out by selecting the lines to be block-commented and hitting <code>CTRL + K</code>. </p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="366" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-20-1024x366.png" alt="" class="wp-image-33421" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-20-1024x366.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/07/image-20-300x107.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-20-768x274.png 768w, https://blog.finxter.com/wp-content/uploads/2021/07/image-20.png 1030w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption><strong>Figure</strong>:  <code>CTRL + K</code>  to comment the block</figcaption></figure></div>



<p>To uncomment the code block again, hit <code>CTRL + SHIFT + K</code>. </p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="307" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-21-1024x307.png" alt="" class="wp-image-33422" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-21-1024x307.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/07/image-21-300x90.png 300w, https://blog.finxter.com/wp-content/uploads/2021/07/image-21-768x231.png 768w, https://blog.finxter.com/wp-content/uploads/2021/07/image-21.png 1036w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption> <strong>Figure</strong>:  <code>CTRL + SHIFT + K</code>  to comment the block </figcaption></figure></div>



<h2 class="wp-block-heading">IDLE</h2>



<p><a href="https://blog.finxter.com/python-idle-vs-pycharm/" target="_blank" rel="noreferrer noopener" title="Python IDLE vs PyCharm">IDLE </a>block commenting inserts two hashtag symbols <code>##</code> before each line. This differentiates it from a simple, non-block comment with only one hashtag <code>#</code>. </p>



<div class="wp-block-image"><figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="732" height="262" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-22.png" alt="" class="wp-image-33423" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-22.png 732w, https://blog.finxter.com/wp-content/uploads/2021/07/image-22-300x107.png 300w" sizes="auto, (max-width: 732px) 100vw, 732px" /></figure></div>



<p>To block-comment the selected lines in an IDLE editor, hit  <code>ALT + 3</code>. </p>



<div class="wp-block-image"><figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="730" height="243" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-23.png" alt="" class="wp-image-33424" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-23.png 730w, https://blog.finxter.com/wp-content/uploads/2021/07/image-23-300x100.png 300w" sizes="auto, (max-width: 730px) 100vw, 730px" /><figcaption> <strong>Figure</strong>: <code>ALT + 3</code> to comment the block.</figcaption></figure></div>



<p>To revert the block-comment and uncomment the code block, select the code block and hit <code>ALT + 4</code>. </p>



<div class="wp-block-image"><figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="730" height="292" src="https://blog.finxter.com/wp-content/uploads/2021/07/image-25.png" alt="" class="wp-image-33426" srcset="https://blog.finxter.com/wp-content/uploads/2021/07/image-25.png 730w, https://blog.finxter.com/wp-content/uploads/2021/07/image-25-300x120.png 300w" sizes="auto, (max-width: 730px) 100vw, 730px" /><figcaption>  <strong>Figure</strong>: <code>ALT + 4</code> to uncomment the block. </figcaption></figure></div>



<p>If you want to boost your Python skills, feel free to download your cheat sheets and join the free email academy here:</p>






<p></p>
<p>The post <a href="https://blog.finxter.com/how-to-comment-out-a-block-of-code-in-python/">How to Comment Out a Block of Code in Python?</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Best VS Code Cheat Sheet</title>
		<link>https://blog.finxter.com/best-vs-code-cheat-sheet/</link>
		
		<dc:creator><![CDATA[Amber Mercado]]></dc:creator>
		<pubDate>Wed, 24 Feb 2021 16:09:51 +0000</pubDate>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=24472</guid>

					<description><![CDATA[<p>Hey Finxters!! It is time for another cheat sheet!! Cheat sheets are super helpful if you are looking to become a Python freelancer. Some of the basics need to be condensed and learned quickly to get you on your way. You will also need to know the IDE you are working with and their shortcuts. ... <a title="Best VS Code Cheat Sheet" class="read-more" href="https://blog.finxter.com/best-vs-code-cheat-sheet/" aria-label="Read more about Best VS Code Cheat Sheet">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/best-vs-code-cheat-sheet/">Best VS Code Cheat Sheet</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hey Finxters!! It is time for another cheat sheet!! Cheat sheets are super helpful if you are looking to become a Python freelancer. Some of the basics need to be condensed and learned quickly to get you on your way. You will also need to know the IDE you are working with and their shortcuts. Knowing how to work in VS Code is half the battle, knowing the shortcuts will make your developing life much easier! Let us tarry no longer and dive into Visual Studio Code IDE!</p>



<h2 class="wp-block-heading"><a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf" target="_blank" rel="noreferrer noopener" title="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf">Cheat Sheet 1: Visual Studio</a></h2>



<div class="wp-block-image"><figure class="aligncenter size-large"><a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="1024" height="792" src="https://blog.finxter.com/wp-content/uploads/2021/02/image-127-1024x792.png" alt="" class="wp-image-24474" srcset="https://blog.finxter.com/wp-content/uploads/2021/02/image-127-1024x792.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/02/image-127-300x232.png 300w, https://blog.finxter.com/wp-content/uploads/2021/02/image-127-768x594.png 768w, https://blog.finxter.com/wp-content/uploads/2021/02/image-127.png 1107w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure></div>



<p>Straight from the source of Visual Studio, this cheat sheet is specifically designed with all of the shortcuts for Windows users. Rejoice if you use Windows like I do. You can print this cheat sheet and pin it to the wall or place it in your developers binder.</p>



<p><strong>Pros:</strong> Perfect cheat sheet to have, all shortcuts are available</p>



<p><strong>Cons:</strong> Designed specifically for Windows.</p>



<h2 class="wp-block-heading"><a href="https://www.shortcutfoo.com/app/dojos/vscode-win/cheatsheet" target="_blank" rel="noreferrer noopener" title="https://www.shortcutfoo.com/app/dojos/vscode-win/cheatsheet">Cheat Sheet 2: ShortcutFoo</a></h2>



<p>Bookmark this cheat sheet from Shortcut Foo. It has all of your shortcuts listed and this is a great way to test yourself on learning the keyboard commands through finger muscle repetition.</p>



<p><strong>Pros:</strong> Rated ‘E’ for everyone.</p>



<p><strong>Cons:</strong> Does not print.</p>



<h2 class="wp-block-heading"><a href="https://devhints.io/vscode" target="_blank" rel="noreferrer noopener" title="https://devhints.io/vscode">Cheat Sheet 3: Devhint.io</a></h2>



<div class="wp-block-image"><figure class="aligncenter size-large"><a href="https://devhints.io/vscode" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="1024" height="507" src="https://blog.finxter.com/wp-content/uploads/2021/02/image-129-1024x507.png" alt="" class="wp-image-24477" srcset="https://blog.finxter.com/wp-content/uploads/2021/02/image-129-1024x507.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/02/image-129-300x149.png 300w, https://blog.finxter.com/wp-content/uploads/2021/02/image-129-768x380.png 768w, https://blog.finxter.com/wp-content/uploads/2021/02/image-129-1536x761.png 1536w, https://blog.finxter.com/wp-content/uploads/2021/02/image-129.png 1751w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure></div>



<p>This cheat sheet is written by Rico, a fellow developer like us! He has a modest collection of cheat sheets he has written. This cheat sheet should be bookmarked and is written for VS code ver. 1.19</p>



<p><strong>Pros: </strong>Rated ‘E’ for everyone.</p>



<p><strong>Cons:</strong> Doesn’t print, is for an older version of VS Code.</p>



<h2 class="wp-block-heading"><a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf" target="_blank" rel="noreferrer noopener" title="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf">Cheat Sheet 4: Visual Studio</a></h2>



<div class="wp-block-image"><figure class="aligncenter size-large"><a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="1024" height="792" src="https://blog.finxter.com/wp-content/uploads/2021/02/image-130-1024x792.png" alt="" class="wp-image-24479" srcset="https://blog.finxter.com/wp-content/uploads/2021/02/image-130-1024x792.png 1024w, https://blog.finxter.com/wp-content/uploads/2021/02/image-130-300x232.png 300w, https://blog.finxter.com/wp-content/uploads/2021/02/image-130-768x594.png 768w, https://blog.finxter.com/wp-content/uploads/2021/02/image-130.png 1107w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure></div>



<p>This cheat sheet is also from Visual Studio like the first however this cheat sheet is designed for Linux users! Keep it on hand when you are working in VS Code. Print it and pin it to the wall behind the monitor</p>



<p><strong>Pros:</strong> Perfect for Linux users with all keyboard shortcuts shown</p>



<p><strong>Cons:</strong> Designed for specifically for Linux</p>



<h2 class="wp-block-heading"><a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf" target="_blank" rel="noreferrer noopener" title="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf">Cheat Sheet 5: Visual Studio</a></h2>



<p>Final one from Visual Studio! This cheat sheet is for Mac users. I really wanted to make sure all OS systems are covered so how could I forget the Mac users? Print this sheet and pin it to the wall or in you developers binder to keep it handy</p>



<p><strong>Pros:</strong> Perfect for Mac users with all keyboard shortcuts shown.</p>



<p><strong>Cons:</strong> Designed for Mac specifically.</p>



<h2 class="wp-block-heading"><a href="https://blog.logrocket.com/wp-content/uploads/2019/08/vs-code-ninja-cheat-sheet-2.pdf" target="_blank" rel="noreferrer noopener" title="https://blog.logrocket.com/wp-content/uploads/2019/08/vs-code-ninja-cheat-sheet-2.pdf">Cheat Sheet 6: Log Rocket</a></h2>



<p>Here is another cheat sheet that you can print from Log Rocket, a front-end monitoring company. This cheat sheet is for Windows, and contains the short cuts you will need to work the keyboard shortcuts.</p>



<p><strong>Pros:</strong> Rated ‘E’ for everyone</p>



<p><strong>Cons:</strong> None that I can see.</p>



<h2 class="wp-block-heading"><a href="https://www.git-tower.com/learn/cheat-sheets/vscode/" target="_blank" rel="noreferrer noopener" title="https://www.git-tower.com/learn/cheat-sheets/vscode/">Cheat Sheet 7: GitTower</a></h2>



<p>Git Tower has a two sheet pdf cheat sheet for the Mac Edition OS. It takes the time to explain the terminal, editor splits and keyboard shortcut preferences. This cheat sheet is really useful for Mac OS Users.</p>



<p><strong>Pros:</strong> Gives explanations and infographics.</p>



<p><strong>Cons:</strong> Written for Mac Operating Systems</p>



<h2 class="wp-block-heading"><a href="https://www.makeuseof.com/tag/visual-studio-code-keyboard-shortcuts-cheat-sheet/" target="_blank" rel="noreferrer noopener" title="https://www.makeuseof.com/tag/visual-studio-code-keyboard-shortcuts-cheat-sheet/">Cheat Sheet 8: MakeUseOf</a></h2>



<p>This cheat sheet is made for Windows OS and even has a free download available that is sent straight to your inbox. Print it and keep it close at hand when you go to work in Python using VS Code.</p>



<p><strong>Pros:</strong> Free download straight to you inbox on useful information.</p>



<p><strong>Cons:</strong> None that I can see.</p>



<h2 class="wp-block-heading"><a href="https://kapeli.com/cheat_sheets/Visual_Studio_Code.docset/Contents/Resources/Documents/index" target="_blank" rel="noreferrer noopener" title="https://kapeli.com/cheat_sheets/Visual_Studio_Code.docset/Contents/Resources/Documents/index">Cheat Sheet 9: Kapeli</a></h2>



<p>This cheat sheet is written for Mac OS for Apple users. The cheat sheet does not print but it does have everything you need from VS Code and it keyboard shortcuts on a Mac computer.</p>



<p><strong>Pros:</strong> Great for Mac users.</p>



<p><strong>Cons:</strong> Does not print.</p>



<h2 class="wp-block-heading"><a href="https://www.arungudelli.com/microsoft/visual-studio-code-keyboard-shortcut-cheat-sheet-windows-mac-linux/" target="_blank" rel="noreferrer noopener" title="https://www.arungudelli.com/microsoft/visual-studio-code-keyboard-shortcut-cheat-sheet-windows-mac-linux/">Cheat Sheet 10: Arunkumar</a></h2>



<p>This cheat is one that you will want to bookmark!! By far, the most comprehensive cheat sheet with shortcuts for all 3 main OS systems( Windows, Linux, Mac) it includes a quick guide to changing the keyboard shortcuts with visuals.</p>



<p><strong>Pros:</strong> Rated ‘E’ for everyone. The best one by far</p>



<p><strong>Cons:</strong> Does not print. Other than that, none that I can see.</p>



<p>I hope that these cheat sheets will be useful to you on your Python Freelance Journey. These cheat sheets cover the 3 main OS systems, most of which you can print and keep on hand as you work projects in VS Code. If you are unsure on where to start, I would humbly suggest VS Code website itself. All of the documentation is there for you to get an in depth look into VS Code as an IDE. Click the link below for a deeper look into Visual Studio Code.</p>



<p><strong>Tutorial</strong>: <a href="https://code.visualstudio.com/docs/introvideos/basics" target="_blank" rel="noreferrer noopener">https://code.visualstudio.com/docs/introvideos/basics</a></p>






<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<p><strong>Related Articles:</strong></p>



<ul class="wp-block-list"><li><a href="https://blog.finxter.com/collection-5-cheat-sheets-every-python-coder-must-own/" target="_blank" rel="noreferrer noopener" title="[Collection] 11 Python Cheat Sheets Every Python Coder Must Own">[Collection] 11 Python Cheat Sheets Every Python Coder Must Own</a></li><li><a href="https://blog.finxter.com/object-oriented-programming-terminology-cheat-sheet/" target="_blank" rel="noreferrer noopener" title="https://blog.finxter.com/object-oriented-programming-terminology-cheat-sheet/">[Python OOP Cheat Sheet] A Simple Overview of Object-Oriented Programming</a></li><li><a href="https://blog.finxter.com/machine-learning-cheat-sheets/" title="[Collection] 15 Mind-Blowing Machine Learning Cheat Sheets to Pin to Your Toilet Wall" target="_blank" rel="noreferrer noopener">[Collection] 15 Mind-Blowing Machine Learning Cheat Sheets to Pin to Your Toilet Wall</a></li><li><a href="https://blog.finxter.com/python-cheat-sheets/" title="https://blog.finxter.com/python-cheat-sheets/" target="_blank" rel="noreferrer noopener">Your 8+ Free Python Cheat Sheet [Course]</a></li><li><a href="https://blog.finxter.com/python-cheat-sheet/" target="_blank" rel="noreferrer noopener" title="Python Beginner Cheat Sheet: 19 Keywords Every Coder Must Know">Python Beginner Cheat Sheet: 19 Keywords Every Coder Must Know</a></li><li><a href="https://blog.finxter.com/python-cheat-sheet-functions-and-tricks/" title="Python Functions and Tricks Cheat Sheet" target="_blank" rel="noreferrer noopener">Python Functions and Tricks Cheat Sheet</a></li><li><a href="https://blog.finxter.com/python-interview-questions/" target="_blank" rel="noreferrer noopener" title="https://blog.finxter.com/python-interview-questions/">Python Cheat Sheet: 14 Interview Questions</a></li><li><a href="https://blog.finxter.com/pandas-cheat-sheets/" title="[PDF Collection] 7 Beautiful Pandas Cheat Sheets — Post Them to Your Wall" target="_blank" rel="noreferrer noopener">Beautiful Pandas Cheat Sheets</a></li><li><a href="https://blog.finxter.com/collection-10-best-numpy-cheat-sheets-every-python-coder-must-own/" title="[Collection] 10 Best NumPy Cheat Sheets Every Python Coder Must Own" target="_blank" rel="noreferrer noopener">10 Best NumPy Cheat Sheets</a></li><li><a href="https://blog.finxter.com/python-list-methods-cheat-sheet-instant-pdf-download/" title="Python List Methods Cheat Sheet [Instant PDF Download]" target="_blank" rel="noreferrer noopener">Python List Methods Cheat Sheet [Instant PDF Download]</a></li><li><a href="https://blog.finxter.com/cheat-sheet-6-pillar-machine-learning-algorithms/" target="_blank" rel="noreferrer noopener" title="[Cheat Sheet] 6 Pillar Machine Learning Algorithms">[Cheat Sheet] 6 Pillar Machine Learning Algorithms</a></li></ul>
</div></div>
<p>The post <a href="https://blog.finxter.com/best-vs-code-cheat-sheet/">Best VS Code Cheat Sheet</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: blog.finxter.com @ 2026-06-18 20:57:52 by W3 Total Cache
-->