Python

as

SpeeDr00t 2016. 7. 21. 20:27
반응형

as

1.소스

from math import sqrt as sqrt1

print sqrt1( 9.0 )
             

결과

hacker@ubuntu:~/python$ python as1.py 
3.0        
반응형