随笔分类 - Python
摘要:hello.py#!/usr/local/bin/python3.4count=0while(count<9): print('the count is:',count) count=count+1;print('good bye!')运行:./hello.py
阅读全文
摘要:vim hello.py#!/usr/local/bin/python3.4str=input('pls intput same message:');print('you had enterd the string:'+str);运行:vim hello.py#!/usr/local/bin/py...
阅读全文
摘要:mkdir -p /workcd /workgwet https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tar.xztar -axf Python-3.4.3.tar.xzcd Python-3.4.3./configuremakemake i...
阅读全文