Socialify

Folder ..

Viewing random_numbers.py
11 lines (8 loc) • 199.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
import random

from django import template

register = template.Library()

@register.simple_tag()
def random_numbers(a, b=None):
    if b is None:
        a, b = 0, a
    return random.randint(a, b)