笨方法学python(1)加分题

1. 让你的脚本再多打印一行

2、让你的脚本只打印一行

时间: 2024-10-25 13:40:08

笨方法学python(1)加分题的相关文章

《笨方法学Python》加分题28

1 #!usr/bin/python 2 # -*-coding:utf-8-*- 3 4 True and True 5 print ("True") 6 False and True 7 print ("False") 8 1 == 1 and 2 == 1 9 print ("False") 10 "test" == "test" 11 print ("True") 12 1 ==

《笨方法学Python》加分题35

sys.exit 用于结束程序 2 from sys import exit 3 4 # 进入黄金房间后的逻辑 5 def gold_room(): 6 print("This room is full of gold. How much do you take?") 7 8 choice = input("> ") 9 # 如果输入不包含 0 或 1 则死 10 if "0" in choice or "1" in c

笨方法学python(5)加分题

这篇对应的是习题17,更多文件操作 # -*- coding: utf-8 -*- #对文件更多操作复制A文件的内容到B文件 #from sys import argv from os.path import exists prompt = "> " from_file = raw_input("please input the filename where you want to copy from: >") #in_file = open(from_

笨方法学python(6)加分题--列表与字典的区别

he string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility) P A H N A P L S I I G Y I R And then read line by line: "PAHNAPLSIIG

笨方法学python(4)加分题

自己在看笨方法学python这本书,把自己觉得有学到东西的记下来,并不是每个习题都有记录 这次对应的是:习题 6: 字符串(string)和文本 这次只要是想说明一下,在print语句中,只要带有格式化字符的,会当作格式化来处理 脚本1: 结果1: 打出的结果没有%r,那是因为当作格式化处理了 脚本2: 结果2: 会报错,因为print joke_evaluation %hilarious 是格式化的标识 脚本3: 结果3:

Day 2 笨方法学Python

手打第25个练习,出错的地方有: def 定义后indent 4个空格,第一行空了以后,直接换行是跟上面对其的,但是运行时是错误的,我的解决方法是,重新手动空格4个: 还发现一个问题就是,中文解释,以前老是出错 # -*- coding : utf-8 -*- 网上看到的加上这个就可以了,但是我的还是出错.今天偶然在削微寒的博客http://www.cnblogs.com/xueweihan/的GIthub上找到了答案 #coding:utf-8 换成这个语句就可以了.以后,尽量每句都加上注释,

笨方法学python(3)加分题

数学和数学计算 print 25+30/6 #25加上30除以6 和为39 print 100-25*3%4 #100减去25乘以3的积再除以4的余数,就是100-3=97 print 100%16 #100除以16的余数=4 print 1/4 #1除以4,然后因为是整数,所以四舍5入为0 print 1.0/4.0 ##1.0除以4.0,因为是浮点数,所以等于0.25 print 3+5<5+4 #判断语句,返回的值为布尔型,true or false 8<9 为 true

笨方法学Python,Lesson 32 - Lesson 34

Exercise 32 代码 the_count = [1, 2, 3, 4, 5] fruits = ['apples', 'oranges', 'pears', 'apricots'] change = [1, 'pennies', 2, 'dimes', 3, 'quarters'] # this first kind of for-loop goes through a list for number in the_count:     print "This is count %d&q

笨方法学python(一)

环境:Notepad++,python2.7.13 编译:先写好.py文件,再在终端中用Python命令运行脚本(运行时终端目录要位于运行的.py文件目录) 习题一: 在python2版本中,双引号""与单引号''都可以用来输出,且不用加括号,语句结束也不用加分号: 句子中要输出引号时,可以用不同种类的引号用来输出 可以用文本编辑器写好.py后缀的python脚本,再在终端中用python 直接运行改脚本. (如果有多个版本的python,要根据脚本的python版本使用不用版本的py