
Python
小风波V
天道酬勤
展开
-
python 线程池
import random import threading import time def test(value1): time.sleep(random.randint(1, 5)) print("threading %s : %s"%(threading.current_thread().name, value1)) return ' %s finished' % value1 def test_result(future): time.sleep(random.原创 2020-10-21 11:06:22 · 148 阅读 · 1 评论 -
Python基础1.1Python介绍
Python是什么? Python是一种通用的解释,交互式,面向对象和高级编程语言。它是由Guido van Rossum在1985 - 1990年创建的。 像Perl一样,Python源代码也可以在GNU通用公共许可证(GPL)下获得。Python是以电视节目“Monty Python`s Flying Circus”来命名,并不是以莽蛇(Python)来命名的。 Python 3.0在2原创 2017-12-25 16:36:16 · 360 阅读 · 0 评论 -
Python基础1.2环境搭建和第一个程序helloworld
python安装原创 2017-12-25 16:37:16 · 443 阅读 · 0 评论