| 
 | 
вернуться в форумPlease help me, what is wrong? Послано  ARE 10 май 2020 12:13 a = list(map(int,input().split())) n = len(a) for i in range(n-1,-1,-1):     print("%.4f" % pow(a[i],1/2)) Re: Please help me, what is wrong? pow(a,b) in Python means the power of integer a and integer b (a^b) use a**b in Python instead.  |  
  | 
|