以下Python程序段执行后,输出结果为( )。
m=29
if m%3 !=0:
print(m,"不能被3整除")
else:
print(m,"能被3整除")
m不能被3整除
29不能被3整除
29能被3整除
m能被3整除