Os Stat_Float_Times
# Python2.x Python os.stat_float_times() Method
[ Python OS File/Directory Methods](#)
* * *
### Overview
The `os.stat_float_times()` method is used to determine whether `stat_result` displays timestamps as float objects.
### Syntax
The syntax for the `stat_float_times()` method is as follows:
os.stat_float_times()
### Parameters
* **newvalue** -- If True, calling `stat()` returns floats; if False, calling `stat()` returns ints. If this parameter is not provided, the current setting is returned.
### Return Value
Returns True or False.
### Example
The following example demonstrates the usage of the `stat_float_times()` method:
#!/usr/bin/python# -*- coding: UTF-8 -*-import os, sys # Stat information statinfo = os.stat('a2.py')print statinfo statinfo = os.stat_float_times()print statinfo
The output of the above program is:
posix.stat_result(st_mode=33188, st_ino=3940649674337682L, st_dev=277923425L, st_nlink=1, st_uid=400, st_gid=401, st_size=335L, st_atime=1330498089, st_mtime=1330498089, st_ctime=1330498089)True
[ Python OS File/Directory Methods](#)
YouTip