python 练习 17

#!/usr/bin/python
# -*- coding: UTF-8 -*-

f1 = 1
f2 = 1
for i in range(1,21):
    print ‘%12d %12d‘ % (f1,f2)
    if (i % 2) == 0:
        print ‘‘
    f1 = f1 + f2
    f2 = f1 + f2
时间: 2024-10-06 23:38:06

python 练习 17的相关文章

欧拉计划(python) problem 17

Number letter counts Problem 17 If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3 + 3 + 5 + 4 + 4 = 19 letters used in total. If all the numbers from 1 to 1000 (one thousand) inclusive were written out in w

【python】17个新手常见Python运行时错误

原文链接:http://www.oschina.net/question/89964_62779 想要弄懂 Python 的错误信息的含义可能有点复杂.这里列出了常见的的一些让你程序 crash 的运行时错误. 1)忘记在 if , elif , else , for , while , class ,def 声明末尾添加 :(导致 “SyntaxError :invalid syntax”) 该错误将发生在类似如下代码中: ? 1 2 if spam == 42     print('Hell

2015/9/21 Python基础(17):绑定和方法调用

绑定和方法调用现在我们需要再次阐述Python中绑定(binding)的概念,它主要与方法调用相关联.方法是类内部定义的函数,这意味着方法是类属性而不是实例属性.其次,方法只有在其所属的类拥有实例时,才能被调用.当存在一个实例时,方法才被认为是绑定到那个实例了,没有实例时,方法就是未绑定的.任何一个方法定义中都有一个参数是变量self.它表示调用此方法的实例对象. 核心笔记:self变量用于在类实例方法中引用方法所绑定的实例.方法的实例在任何方法调用中总是作为第一参数传递的,self代表方法的实

python基础17 ---继承补充知识

一.继承的顺序 1.在python中的类可以集成多个类,既然是继承多个类就有类的寻找顺序这么一说.其寻找方法就有广度优先和深度优先两种. 2.当类是新式类,多继承的情况下会按照广度优先的顺序查找. 如图: 当H这个类是新式类也就是说它的父类中有object这个类,那么他要查找某个属性,会先从自己的类中查找,如果没有再查找父类的,查找顺序为:H->E->B->F->C->G->D->A.注意父类A是最后查找的,所以说他是广度优先. 当H这个类是经典类也就是说它的父类

Python学习17:使用Python拷贝文本文件

编写一个Python脚本,将一个文件的内容拷贝到另一个文件 # -- coding: utf-8 -- from sys import argv from os.path import exists script, from_file, to_file = argv print "Copying from %s to %s " % (from_file, to_file) # we could do these two on one line too, how? # input = o

小白学Python(17)——pyecharts 日历图 Calendar

Calendar-2017年微信步数情况 1 import datetime 2 import random 3 4 from pyecharts import options as opts 5 from pyecharts.charts import Calendar 6 7 begin = datetime.date(2017, 1, 1) 8 end = datetime.date(2017, 12, 31) 9 data = [ 10 [str(begin + datetime.tim

Python学习-17.Python中的错误处理(二)

错误是多种多样的,在 except 语句中,可以捕获指定的异常 修改代码如下: 1 import io 2 3 path = r'' 4 mode = 'w' 5 6 try: 7 file = open(path,mode) 8 str = file.read() 9 print(str) 10 except FileNotFoundError as e: 11 print(e) 12 except io.UnsupportedOperation as e: 13 print(e) 14 fi

python:习题17

# -*- coding: cp936 -*-from sys import argvfrom os.path import exists script, from_file, to_file = argv print "Copying from %s to %s" % (from_file, to_file) # we could do these two on one line too, how? in_file = open (from_file)indata = in_file

Python 笔记 #17# Pandas: Merge

10 Minutes to pandas Concat df = pd.DataFrame(np.random.randn(10, 4)) print(df) # break it into pieces pieces = [df[:3], df[3:7], df[7:]] print(pd.concat(pieces)) # 0 1 2 3 # 0 0.879526 -1.417311 -1.309299 0.287933 # 1 -1.194092 1.237536 -0.375177 -0