Latest web development tutorials

Python beinhaltet 50 Übungen

Python 100 Li Python 100 Li

Titel: Ausgabe einer Zufallszahl.

Programmanalyse: Verwendung von Zufalls Modul.

Source Code:

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

import random

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

Das obige Beispiel Ausgabe lautet:

14.4012371357

Python 100 Li Python 100 Li