博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ex24更多练
阅读量:5080 次
发布时间:2019-06-12

本文共 1441 字,大约阅读时间需要 4 分钟。

碰到的主要问题:

 

这是python在告诉你:Hi,老兄,你的文件里格式不对了,可能是tab和空格没对齐的问题,你需要检查下tab和空格了”。 

可以通过编辑器Notepad进行进一步查看:视图-显示符号-显示空格与制表符

要求是tab和空格数目都一致的。

 

1 #-*- coding: UTF-8 -*-  2 print "Let's practice everything." 3 print 'You\'d need to know \'bout escape with \\ that do \n newlines and \t tabs.' 4  5 poem = """ 6 \tThe lovely world 7 with logic so firmly planted 8 can not discern \n the needs of lovely 9 nor comprehend passion from intuition10 and requires an explaniation11 \n\t\t where there is none.12 """13 14 print "--------------------"15 print poem16 print "--------------------"17 18 five = 10 - 2 + 3 - 619 print "This should be five:%s" %five20 21 def secret_formula (started):#函数后面永远不记得加":"!!!!22      jelly_beans = started * 500#这里出现了一个IndentationError:unexpected indent,这是由于下面那几个命令行没有对齐(要求几个tab和几个空格完全相同。解决方法:视图-显示符号-显示空格与制表符23      jars = jelly_beans / 100024      crates = jars / 10025      return jelly_beans,jars,crates#创建函数后,返回三个变量值26      27 start_point = 1000028 beans,jars, crates = secret_formula(start_point)#这个有点类似argv的那个操作,把函数的最后三个变量给解压出来放到这三个新的变量里边。29 #函数内部的变量都是临时的,当函数返回之后,返回值可以被赋予另一个变量。30 print "With a starting point of:%d" % start_point31 print "We'd have %d beans, %d jars, and %d crates." %(beans, jars, crates)32 33 start_point = start_point / 1034 35 print "We can also do that this way:"36 print "We'd have %d beans, %d jars, and %d crates." % secret_formula(start_point)

 

 

转载于:https://www.cnblogs.com/dingtou00/p/7758176.html

你可能感兴趣的文章
ambari 大数据安装利器
查看>>
java 上传图片压缩图片
查看>>
magento 自定义订单前缀或订单起始编号
查看>>
ACM_拼接数字
查看>>
计算机基础作业1
查看>>
Ubuntu 深度炼丹环境配置
查看>>
C#中集合ArrayList与Hashtable的使用
查看>>
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>