Python 練習(xí)實(shí)例50

Python 100例 Python 100例

題目:輸出一個(gè)隨機(jī)數(shù)。

程序分析:使用 random 模塊。

程序源代碼:

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

import random

#生成 10 到 20 之間的隨機(jī)數(shù)
print random.uniform(10, 20)  

以上實(shí)例輸出結(jié)果為:

14.4012371357

Python 100例 Python 100例