Python学习100例之61-70

此Python版本为2.7,其他例子如下:
Python学习100例之1-10
Python学习100例之11-20
Python学习100例之21-30
Python学习100例之31-40
Python学习100例之41-50
Python学习100例之51-60
Python学习100例之71-80
Python学习100例之81-90
Python学习100例之91-100

61.打印出杨辉三角形

pascal = [[1]]
num = int(input("请输入行数:"))
for i in range(1, num):
    pascal.append([1])
    for j in range(1, i):
        pascal[i].append(pascal[i - 1][j - 1] + pascal[i - 1][j])
    pascal[i].append(1)
for i in pascal:
    for j in range(len(i)):
        if j != len(i) - 1:
            print(i[j], end=' ')
        else:
            print(i[j])
print('\n')

62.查找字符串

str1 = 'qwer'
str2 = 'r'
print(str1.find(str2), '\n')

63.画椭圆

import tkinter
from tkinter import *

 canvas = Canvas(width=600, height=600, bg='yellow')
 canvas.pack(expand=tkinter.constants.YES, fill=tkinter.constants.BOTH)
 canvas.create_oval(200, 100, 480, 240)
 mainloop()

x = 360
y = 160
top = y - 30
bottom = y - 30

canvas = Canvas(width=400, height=600, bg='white')
for i in range(20):
    canvas.create_oval(250 - top, 250 - bottom, 250 + top, 250 + bottom)
    top -= 5
    bottom += 5
canvas.pack()
mainloop()

64.利用ellipse 和 rectangle 画图

import tkinter
from tkinter import *

canvas = Canvas(width=600, height=600, bg='white')
 canvas.pack(expand=tkinter.constants.YES, fill=tkinter.constants.BOTH)
 canvas.create_rectangle(200, 100, 480, 240)
left = 20
right = 50
top = 50
num = 15
for i in range(num):
    canvas.create_oval(250 - right, 250 - left, 250 + right, 250 + left)
    canvas.create_oval(250 - 20, 250 - top, 250 + 20, 250 + top)
    canvas.create_rectangle(20 - 2 * i, 20 - 2 * i, 10 * (i + 2), 10 * (i + 2))
    right += 5
    left += 5
    top += 10

canvas.pack()
mainloop()

65.一个最优美的图案

import math
from tkinter import *

class PTS:
    def __init__(self):
        self.x = 0
        self.y = 0


points = []


def LineToDemo():

    screenx = 400
    screeny = 400
    canvas = Canvas(width=screenx, height=screeny, bg='white')

    AspectRatio = 0.85
    MAXPTS = 15
    h = screeny
    w = screenx
    xcenter = w / 2
    ycenter = h / 2
    radius = (h - 30) / (AspectRatio * 2) - 20
    step = 360 / MAXPTS
    angle = 0.0
    for i in range(MAXPTS):
        rads = angle * math.pi / 180.0
        p = PTS()
        p.x = xcenter + int(math.cos(rads) * radius)
        p.y = ycenter - int(math.sin(rads) * radius * AspectRatio)
        angle += step
        points.append(p)
    canvas.create_oval(xcenter - radius, ycenter - radius,
                       xcenter + radius, ycenter + radius)
    for i in range(MAXPTS):
        for j in range(i, MAXPTS):
            canvas.create_line(points[i].x, points[i].y, points[j].x, points[j].y)

    canvas.pack()
    mainloop()


LineToDemo()

66.输入3个数a,b,c,按大小顺序输出

a = int(input("请输入数字a:"))
b = int(input("请输入数字b:"))
c = int(input("请输入数字c:"))

nums = [a, b, c]
nums.sort()
print(nums[0], ' ', nums[1], ' ', nums[2])

67.输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组

nums = []
for _ in range(6):
    numbers = int(input("请输入一个数字:"))
    nums.append(numbers)

for i in range(len(nums)):
    if nums[i] == max(nums):
        nums[0], nums[i] = max(nums), nums[0]
    if nums[i] == min(nums):
        nums[int(len(nums) - 1)], nums[i] = min(nums), nums[int(len(nums) - 1)]

print(nums, '\n')

68.有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数

n = [1, 2, 3, 4, 5, 6, 7, 8, 9]
m = int(input("向后移位置数:"))
n = n[m:] + n[:m]
print(n, '\n')

69.有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。

n = int(input("请输入人数:"))


class person:
    def __init__(self, number):
        self.number = number

persons = []
for i in range(n):
    people = person(i + 1)
    persons.append(people)

while True:
    persons = persons[3:] + persons[:2]
    if len(persons) == 2:
        persons = persons[1:]
        break

print(persons[0].number, '\n')

70.写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度

def strLength(string):
    return print("字符串的长度%d" % len(string))

strLength(input("输入字符串:"))

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,233评论 6 495
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,357评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,831评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,313评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,417评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,470评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,482评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,265评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,708评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,997评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,176评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,503评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,150评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,391评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,034评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,063评论 2 352

推荐阅读更多精彩内容