0
In Python, time.time() returns what ?
4 Respostas
+ 3
https://docs.python.org/3/library/time.html#time.time
+ 3
Barsha Dash ,
pythom time method time() returns the time as a floating point in seconds since the begin of the epoch. if you divide this number by (60 * 60 * 24 * 365), you get the beginning of the so called epoch which is 1970 in my system.
+ 3
Thank you all...🙂
+ 2
Why don't you try "type()" function to check it 🙂
https://code.sololearn.com/clN23Zn5A40T/?ref=app
Hope this code will be helpful for you