Heim  >  Artikel  >  Backend-Entwicklung  >  win7安装python生成随机数代码分享

win7安装python生成随机数代码分享

WBOY
WBOYOriginal
2016-06-16 08:45:491383Durchsuche

复制代码 代码如下:

import random

def genrand(small, big) :
    return small + (big-small) * random.random()

def display(small, big) :
    return r'请输入上下限(默认%.2f~%.2f):' % (small, big)

big = 100
small = 0

while True :
    try :
        s = input(display(small, big)).strip()
        if s.lower() == 'exit' :
            break
        a = s.split()
        if a != [] :
            big = float(a[1])
            small = float(a[0])
        rand = genrand(small, big)
        print('(%.2f~%.2f): %.3f\n' % (small, big, rand))
    except :
        print('--Error--\n')

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn