Random Selection from List

  • Share this:

Code introduction


Randomly select an element from the given list.


Technology Stack : random

Code Type : Function

Code Difficulty : Beginner


                
                    
def random_choice(items):
    import random
    return random.choice(items)                
              
Tags: