上一页 1 ··· 9 10 11 12 13

2018年9月13日

初识python: for循环之“两数之和”

摘要: #!/user/bin env python # author:Simple-Sir # time:20180913 # 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。 list1 = [1,2,3,4,5,6,7,8,9] target = 10 num = 0 print(' 方法 阅读全文

posted @ 2018-09-13 23:17 Simple-Sir 阅读(1862) 评论(1) 推荐(1) 编辑

2018年9月12日

初识python: 列表(list)

摘要: 使用列表函数写一个“购物车”小程序: #!/user/bin env python # author:Simple-Sir # 20180908 ''' 需求: 1、启动程序后,让用户输入工资,然后打印商品列表 2、允许用户根据商品编号购买商品 3、用户选着商品后,检测余额是否够,够就直接扣款,不够 阅读全文

posted @ 2018-09-12 22:13 Simple-Sir 阅读(300) 评论(0) 推荐(0) 编辑

2018年9月11日

初识python:格式化输出

摘要: 使用input函数输入用户值,再使用三种方法格式化输出。 #!/user/bin env python # author:Simple-Sir # 20180831 # 格式化输出: name = input('输入姓名:') age = input('输入年龄:') # 方法一: msg1 = ' 阅读全文

posted @ 2018-09-11 14:43 Simple-Sir 阅读(360) 评论(0) 推荐(1) 编辑

2018年9月10日

初识python: while循环 猜年龄小游戏

摘要: 知识点: 1、python注释方法: 单行注释: # 多行注释: '''注释内容 ''' (单引号或双引号都可以),亦可打印多行 例: 2、str.upper() 将小写字母转换成大写字母 str.lower() 将大写字母转换成小写字母 例: 3、python中通过强制缩进区分结构,不需要类似{} 阅读全文

posted @ 2018-09-10 23:02 Simple-Sir 阅读(860) 评论(0) 推荐(0) 编辑

初识python:hello world 仪式感

摘要: python print 函数(在python中,不区分 ' ' 和 " "): 或者 阅读全文

posted @ 2018-09-10 22:35 Simple-Sir 阅读(377) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13

导航