复习Python表示幂的知识点:
1、**
2、pow(数字,次数)
#水仙花数 count=0 for i in range(100,1000): m=i%10#个位 n=i//10%10#十位 k=i//100#百位 if i==(m**3+n**3+k**3): print(i) count+=1 print(f"水仙花个数为{count}")
标签:count,10,41,print,100,水仙花 From: https://www.cnblogs.com/fan-study/p/17061996.html