Answers for "how to code monday as 0 to sunday as 6 in python"

9

how to use timeit in python 3

import timeit
import_module = "import random"
testcode = ''' 
def test(): 
    return random.randint(10, 100)
'''
print(timeit.repeat(stmt=testcode, setup=import_module))
Posted by: Guest on May-16-2020
0

in python how to end the code after 10 input

incorrect = 0
max_tries = 3
choices = ['red', 'green', 'yellow']

while incorrect < max_tries:
    user_input = raw_input()
    if user_input not in choices:
        incorrect += 1
    else:
        rest_of_the_code(user_input)
        incorrect = 0

if incorrect == max_tries:
    sys.exit(1)
Posted by: Guest on April-02-2020

Code answers related to "how to code monday as 0 to sunday as 6 in python"

Python Answers by Framework

Browse Popular Code Answers by Language