আমাকে এলোমেলো.চয়েসের ভারী সংস্করণ লিখতে হবে (তালিকার প্রতিটি উপাদান নির্বাচনের জন্য আলাদা সম্ভাবনা রয়েছে)। এটিই আমি নিয়ে এসেছি:
def weightedChoice(choices):
"""Like random.choice, but each element can have a different chance of
being selected.
choices can be any iterable containing iterables with two items each.
Technically, they can have more than two items, the rest will just be
ignored. The first item is the thing being chosen, the second item is
its weight. The weights can be any numeric values, what matters is the
relative differences between them.
"""
space = {}
current = 0
for choice, weight in choices:
if weight > 0:
space[current] = choice
current += weight
rand = random.uniform(0, current)
for key in sorted(space.keys() + [current]):
if rand < key:
return choice
choice = space[key]
return None
এই ফাংশনটি আমার কাছে অত্যধিক জটিল এবং কুৎসিত বলে মনে হয়। আমি আশা করছি এখানকার প্রত্যেকে এটির উন্নতি বা এটি করার বিকল্প উপায় সম্পর্কে কিছু পরামর্শ দিতে পারে। কোড পরিচ্ছন্নতা এবং পঠনযোগ্যতার মতো দক্ষতা আমার পক্ষে ততটা গুরুত্বপূর্ণ নয়।
random.choices
পৃথক কলগুলির চেয়ে ধীর গতিতে ক্রম । আপনার যদি প্রচুর এলোমেলো ফলাফলের প্রয়োজন হয় তবে সামঞ্জস্য করে একবারে সেগুলি বেছে নেওয়া সত্যিই গুরুত্বপূর্ণnumber_of_items_to_pick
। যদি আপনি এটি করেন, এটি দ্রুততার একটি ক্রম।