VScodeのpythonについて
vscodeでprint()と入力するとコメント文が出てきます。非表示に出来ないでしょうか。
一応動作はするのですがprint()と入力すると毎回出てきます。以下全文コメント文です。
print()
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default. Optional keyword arguments: file: a file-like object (stream); defaults to the current sys.stdout. sep: string inserted between values, default a space. end: string appended after the last value, default a newline. flush: whether to forcibly flush the stream.
回答2件
あなたの回答
tips
プレビュー