欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

python 若干隨機值

林雅南1年前8瀏覽0評論

Python是一種功能強大的編程語言,它具有眾多的模塊和庫使其成為了數據科學、自然語言處理、機器學習等領域的首選工具。在Python中,你可以使用眾多的內置函數得到各類隨機值,下面我們就來看看Python中的若干隨機值。

import random
# 1. 隨機整數
random_int = random.randint(1, 10)  # 返回1到10之間的隨機整數
print(random_int)
# 2. 隨機浮點數
random_float = random.uniform(1.0, 2.0)  # 返回1到2之間的隨機浮點數
print(random_float)
# 3. 隨機字符串
random_str = ''.join(random.sample('abcdefghijklmnopqrstuvwxyz', 5))  # 返回隨機字母組成的5位字符串
print(random_str)
# 4. 隨機列表
random_list = random.sample([1, 2, 3, 4, 5], 3)  # 返回隨機選中的3個元素組成的列表
print(random_list)
# 5. 隨機字典
random_dict = dict(random.sample({'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}.items(), 3))  # 返回隨機選中的3個鍵值對組成的字典
print(random_dict)

以上就是Python中的若干隨機值,如果你想要得到更多隨機數據,那么就趕緊去Python官網學習吧!