Python学习笔记
Aono
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
02python_basis
Python学习笔记02python_basiscoding.pyprint('中国Str')print('')transfer.pyprint('\\\\\\\\\n\t\\\\\\')#print('\\\') worng num must be 2*nprint('''line1line2line3''')judgment.py#print absolute value of原创 2015-12-06 01:18:19 · 401 阅读 · 0 评论 -
Python学习笔记
Python学习笔记00python_helperlearning.py廖学峰主页上的learning.py文件,用于网页解析Python原创 2015-12-06 01:00:04 · 337 阅读 · 0 评论 -
01python_introduce
Python学习笔记01python_introducehelloworld.pyprint("hello world")helloRunOnlinux.py#user/bin/env python3print("hello linux")print('hello koo',' what?')print(300)print(100+333)calc.pyprint(100+200原创 2015-12-06 01:05:01 · 651 阅读 · 1 评论 -
03python_function
Python学习笔记03python_functiondefFunction#-*- coding:utf-8 -*-print("defFunction")def my_function(x): if x>=0: return x else: return -xx = input("please input the value of x:"原创 2016-02-02 10:01:09 · 484 阅读 · 0 评论 -
04python_senior
Python学习笔记04python_senioriterate#-*- coding:utf-8 -*-print("iteration")l = [1,2,3,4,5,5,6]for i in l: print(i)kv = {"city":"shanghai","name":"Aono","computer":"ThinkPad"}for key in kv: p原创 2016-02-02 10:07:30 · 443 阅读 · 0 评论
分享