Clarification of the numbers that can be used. (#22174)

* Clarification of the numbers that can be used.

Article previously only explicitly referenced the use of floating point numbers. Have clarified that it is possible to use either an integer or a float.

* Fixed formatting and typos
pull/22592/head^2
PMB79 2018-11-18 23:34:16 +00:00 committed by Manish Giri
parent c78f7b563a
commit abe821bd8e
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ for letter in 'hello, world!':
time.sleep(2) # sleep 2 seconds between each print time.sleep(2) # sleep 2 seconds between each print
``` ```
Floating point numbers can be given as the argument to `sleep()` for more precise sleep times. When using sleep, you can define the amount of time that the program is suspended using either an integer (a whole number) or a float (a number with decimal places), depending on the level of control you want over the time that the program sleeps. For example, `time.sleep(10)` would suspend a program for 10 seconds, while `time.sleep(5.5)` would suspend a program for five and a half seconds.
#### More Information: #### More Information
Time module <a href='https://docs.python.org/3/library/time.html#time.sleep' target='_blank' rel='nofollow'>documentation</a> on the sleep function. Time module <a href='https://docs.python.org/3/library/time.html#time.sleep' target='_blank' rel='nofollow'>documentation</a> on the sleep function.