diff options
author | mayx | 2022-01-04 20:42:55 +0800 |
---|---|---|
committer | mayx | 2022-01-04 20:42:55 +0800 |
commit | f4aa957c53cda659d026ffd23856f65a72fee739 (patch) | |
tree | afc51b78e1ff241c955ca30910e895e02e0a1d22 /_posts/2019-11-01-python.md |
Restore deleted repositories
Diffstat (limited to '_posts/2019-11-01-python.md')
-rw-r--r-- | _posts/2019-11-01-python.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/_posts/2019-11-01-python.md b/_posts/2019-11-01-python.md new file mode 100644 index 0000000..ed77a46 --- /dev/null +++ b/_posts/2019-11-01-python.md @@ -0,0 +1,37 @@ +--- +layout: post +title: Mayx应聘失败(Python版) +tags: [应聘, Python, 面向时间] +--- + +既然最近学了Python,那就去应聘一下Python程序员吧XD<!--more--> + +[上次去面试运维失败了](/2019/01/27/shell.html),这次不能这么丢人了。 +然后那个面试官居然又让我写排序的程序23333 + +Mayx想了想,写出了以下代码: +```python +a=[1,2,3,5,4,9,10,8,5] +import threading +import time +def counting(i): + time.sleep(i) + print(i) +for i in a: + threading.Thread(target=counting,args=(i,)).start() +``` +执行效果: +``` +1 +2 +3 +4 +5 +5 +8 +9 +10 +``` +然后,Mayx被赶出来了…… +我写的代码明明可以执行,效果也没问题,居然赶我出来,这一定是个垃圾公司! +后来才知道,他们又想让我回答`sort()`,怕是同一家公司(笑) |