HOME/Articles/

simple python-example-50 (snippet)

Article Outline

Python example 'python-example-50'

Modules used in program:

  • import random

python-example-50

Python example: python-example-50

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import random

#生成 10 到 20 之间的随机数
print(random.uniform(10, 20)  )