From 9651c8c071b4866fc25143663c7ca35c5180aa45 Mon Sep 17 00:00:00 2001 From: HanHor Wu Date: Mon, 1 Dec 2014 18:57:33 +0800 Subject: [PATCH] add solution to problem 002 --- horx/002/run.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 horx/002/run.py diff --git a/horx/002/run.py b/horx/002/run.py new file mode 100755 index 00000000..b7ea9355 --- /dev/null +++ b/horx/002/run.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +import uuid + +for i in range (0, 20): + id = uuid.uuid4() + print('i >> {0}, uuid >>> {1}'.format(i, id))