Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

use random functions (python)

I wonder if we can do that in python, let's suppose we have 3 differents functions to processing datas like this:

def main():
  def process(data):
     .....
  def process1(data):
     .....
  def process2(data):
     .....
  def run():
     test = choice([process,process1,process2])
     test(data)
  run()

main()

Can we choice one random function to process the data ? If yes, is this a good way to do so ?

Thanks !

like image 981
n00bie Avatar asked Jul 28 '26 17:07

n00bie


2 Answers

Excellent approach (net of some oversimplification in your skeleton code). Since you ask for an example:

import random

def main():
  def process(data):
     return data + [0]
  def process1(data):
     return data + [9]
  def process2(data):
     return data + [7]
  def run(data):
     test = random.choice([process,process1,process2])
     print test(data)
  for i in range(7):
    run([1, 2, 3])

main()

I've made it loop 7 times just to show that each choice is indeed random, i.e., a typical output might be something like:

[1, 2, 3, 7]
[1, 2, 3, 0]
[1, 2, 3, 0]
[1, 2, 3, 7]
[1, 2, 3, 0]
[1, 2, 3, 9]
[1, 2, 3, 9]

(changing randomly each and every time, of course;-).

like image 111
Alex Martelli Avatar answered Jul 30 '26 05:07

Alex Martelli


Sure is!

That the nice thing in Python, functions are first class objects and can be referenced in such an easy fashion.

The implication is that all three methods have the same expectation with regards to arguments passed to them. (This probably goes without saying).

like image 28
mjv Avatar answered Jul 30 '26 06:07

mjv



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!