How to get the current time in seconds with Python

1 Answer

0 votes
import time

current_time = time.time()

print(current_time)



'''
run:

1603293225.1954694

'''

 



answered Oct 21, 2020 by avibootz

Related questions

1 answer 142 views
1 answer 195 views
1 answer 189 views
1 answer 198 views
1 answer 89 views
1 answer 129 views
...