溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

給python代碼快速添加注釋的方法

發(fā)布時間:2020-08-01 10:14:10 來源:億速云 閱讀:283 作者:清晨 欄目:編程語言

不懂給python代碼快速添加注釋的方法?其實想解決這個問題也不難,下面讓小編帶著大家一起學(xué)習(xí)怎么去解決,希望大家閱讀完這篇文章后大所收獲。

python代碼快速添加注釋的方法

選中要注釋的代碼,按下ctrl+/注釋。

實例

#----->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

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享給python代碼快速添加注釋的方法內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI