最新 最热

python 编程实例 6

#python 100 例 6.py#输出9*9口决for i in range(1,10):    for j in range(1,10):        a = i * j        print (i ,"*",j ,"=",a )

2020-01-14
0

Python 学习笔记

经常出现 'ascii' codec can't encode characters in position 8-50: ordinal not in range(128) 错误

2020-01-13
1

python 编程实例 1

#题目:有 1、2、3、4 个数字,能组成多少个互不相同且无重复数字的三位数?都是多

2020-01-13
0

python--练习--for i in

#!/usr/bin/python3total1=0total2=0for i in range(2,101):if i%2==0 :total1+=i

2020-01-13
0

python list定义并初始化长度

使用Python的人都知道range()函数很方便,今天再用到它的时候发现了很多以前看到过但是忘记的细节。这里记录一下range(),复习下list的slide,最后分析一个好玩儿的冒泡程序。...

2020-01-12
1

python 第2天

easygui.msgbox("""I have a secret ,It is a number from 1-99 ,you have 6 tries

2020-01-11
0

python条件、循环、终止

说明: enumerate 还可以指定元素的第一个元素从几开始,默认是0,也可以指定从1开始:for index, item in enumerate(items, start=1)

2020-01-10
1

P-1.5 Python跳出多层循环的方

“else在 while和for 正常循环完成之后执行,和直接写在 while和for 之后没有区别,但是如果用break结束循环之后else就不会执行了。” 再利用continue使得break不被执行而直接跳到第一行,真是太具技巧性了!...

2020-01-10
0

Python的for循环,continu

#break+for循环,break只跳出当前小的被嵌套的for循环

2020-01-10
1

python基础学习04(死循环)

死循环  这里True,代表1是真,0是假 i = 0 while True:   i = i + 1   if i == 50:      print 'I have got to the round 50th!...

2020-01-10
0