小明帮妈妈浇花,如果花盆里土的湿度低于30%,就需要浇水。如果用变量moisture表示土壤湿度,以下哪个Python语句可以模拟需要浇水的情况?( )
if moisture>30%:
print('浇水')
if moisture<30%:
print('不浇水')