VSCodeにおける一括コメントアウトについて
環境
- MacOS Monterey
- Python3.11.1
手順
- [command] + [/]
(Windowsの場合、[CTRL] + [/])
# count = 0
# while True:
# if count >= 5:
# break
# print(count)
# count += 1
count = 0
while True:
if count >= 5:
break
if count ==2:
count += 1
continue
print(count)
count += 1
他のプログラミング言語
言語 | 1行コメント | ブロックコメント |
---|---|---|
Python | # | """ """ または ''' ''' |
HTML | なし | <!-- --> |
CSS | なし | /* */ |
JavaScript | // | /* */ |
Swift | // | /* */ |