i?=?input('Input?number:?')
創(chuàng)新互聯(lián),專注為中小企業(yè)提供官網(wǎng)建設(shè)、營銷型網(wǎng)站制作、響應(yīng)式網(wǎng)站開發(fā)、展示型網(wǎng)站設(shè)計制作、成都網(wǎng)站制作等服務(wù),幫助中小企業(yè)通過網(wǎng)站體現(xiàn)價值、有效益。幫助企業(yè)快速建站、解決網(wǎng)站建設(shè)與網(wǎng)站營銷推廣問題。
if?int(i)?%?2?==?1:
print('奇數(shù)')
else:
print('偶數(shù)')
tempnum.isdigit只是判斷字符串是否只由數(shù)字組成,但它的數(shù)據(jù)類型依然是str不是int,所以和25比較的結(jié)果是False
有兩種解決方式,一個是定義number的時候直接定義成str格式 number='25',或者取輸入的時候tempnum = int(input('...')),然后就不使用tempnum.isdigit判斷了
用__doc__屬性,比如:
import os
print os.makedirs.__doc__
makedirs(path [, mode=0777])
Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not
just the rightmost) will be created if it does not exist. This is
recursive.