您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么用pycharm給idle注釋代碼,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
問題:
在python的idle里面 在每一行前面加#就可以變成注釋不運行 但是句子比較多的時候 一行一行的加好麻煩啊 有沒有什么快捷方法一次在多行前面加#
解決:
用的pycharm,有三種注釋方式:
1.用 一對""" 括起來要注釋的代碼塊。
2.用一對'''括起來要注釋的代碼塊。
3.選中要注釋的代碼,按下ctrl+/注釋。
代碼:
#!/usr/bin/python #coding=gbk # Filename: if.py #----->1.用一對"""括起來要注釋的代碼: """ number = 23 guess = int(raw_input('Enter an integer : ')) if guess == number: print 'Congratulations, you guessed it.' # New blockstarts here print "(but you do not win any prizes!)" # New blockends here elif guess < number: """ #----->2.用一對'''括起來要注釋的代碼塊: ''' print 'No, it is a little higher than that' #Another block # You can do whatever you want in a block ... else: ''' #----->3.選中要注釋的代碼,按下ctrl+/注釋: # print 'No, it is a little lower than that' # # you must have guess > number to reach here # print 'Done' # # This last statement is always executed, after the ifstatement is executed
感謝你能夠認真閱讀完這篇文章,希望小編分享怎么用pycharm給idle注釋代碼內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。