Python 中生成 0 到 9 之間的隨機整數

不多有Python示例向您展現如何生成0(含)和9(含)之間的隨機整數html 0 1 2 3 4 5 6 7 8 9 1.randrange 1.1生成0到9之間的隨機整數python #!/usr/bin/python import random for i in range(10): print(random.randrange(10)) # 0-9 輸出量bash 7 4 1
相關文章
相關標籤/搜索