二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
标题:Python3 数字Number Choice 方法
Python3 数字Number Choice 方法
#!/usr/bin/python3 import random print ("returns a random number from range(100) : ",random.choice(range(100))) print ("returns random element from list [1, 2, 3, 5, 9]) : ", random.choice([1, 2, 3, 5, 9])) print ("returns random character from string 'Hello World' : ", random.choice('Hello World'))