함수 random()

1 Excel[ | ]

PHP
Copy
=RAND()
// range: 0.0 - 1.0

2 JavaScript[ | ]

JavaScript
Copy
console.log( Math.random() );
// 0.27812841982981573

3 Python[ | ]

Python
Copy
## Random float:  0.0 <= x < 1.0
print( random() )
# 0.37444887175646646