摘要: 1 a="good" 2 for item in a: 3 print(item) 1 # a="good" 2 # for item in a: 3 # print(item) 4 # v=range(100) 5 # print(v) 6 a=input(">>>>") 7 print(a) 8 l=len(a) 9 print(l) # print(item... 阅读全文
posted @ 2018-04-03 16:51 未来的技术 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 1 a="hello" 2 b=a[0]#0 3 print(b) 4 a="hello" 5 b=a[0:2]#0<= x<2 6 print(b) 阅读全文
posted @ 2018-04-03 16:35 未来的技术 阅读(135) 评论(0) 推荐(0) 编辑
摘要: format:固定站位,find:找字符位置,join:把a内容加入字符串中,spilt:去掉某个元素的输出,strip:去除某个元素输出 阅读全文
posted @ 2018-04-02 21:50 未来的技术 阅读(833) 评论(0) 推荐(0) 编辑
摘要: format函数,str:选中按住ctrl+鼠标左键出现函数, 阅读全文
posted @ 2018-04-02 15:14 未来的技术 阅读(106) 评论(0) 推荐(0) 编辑
摘要: a='123' print(type(a)) b=int(a) print(type(b)) 阅读全文
posted @ 2018-04-02 14:48 未来的技术 阅读(302) 评论(2) 推荐(0) 编辑
摘要: 基本数据类型: 数字:int 代表数字类型,所有整形都是int类型 z=123 字符串:str a='ssds' 布尔值bool 列表list 元祖tuple 字典dict 阅读全文
posted @ 2018-04-02 14:42 未来的技术 阅读(110) 评论(0) 推荐(0) 编辑
摘要: in或者not in 输出的是布尔值true或者false # name='cat' # v='a'in name # print(v) name='cat' v='m'in name print(v) 阅读全文
posted @ 2018-04-02 14:21 未来的技术 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 限制3次输入用户名 n=0 >>> while n<3: ... user=input('请输入用户名:') ... pwd=input('请输入密码:') ... if user=='atc' and pwd=='123': ... print('欢迎登陆!') ... break ... n=n+1 阅读全文
posted @ 2018-04-02 14:11 未来的技术 阅读(83) 评论(0) 推荐(0) 编辑
摘要: ctrl+?整体注释 求和:sum([1,2,3])6 阅读全文
posted @ 2018-04-02 14:10 未来的技术 阅读(127) 评论(0) 推荐(0) 编辑
摘要: c编写需要对内存申请释放时低级语言,python,java不需要是高级语言 阅读全文
posted @ 2018-04-02 14:08 未来的技术 阅读(86) 评论(0) 推荐(0) 编辑