星海's Blog

老头初学编程

我的Python初学代码

星海 posted @ 2010年10月02日 02:37 in Python代码 , 1354 阅读
#!/usr/bin/python
i=10
n=0
while i>0:
    n=n+i
    i=i-2
print n

 

 

1 #!/usr/bin/env python
 2 # readline() 
 3
 4 inp=open("NEWS.txt","r")
 5 count=0
 6
 7 while 1:
 8     line = inp.readline()
 9     print line
10     count=count+1
11     while count == 25:
12         name = raw_input("按a继续:  ")
13         if name == 'a':
14             count = 0
15         else:
16             continue
17
18     if len(line) == 0:
19         break
20
21 inp.close()

22 version = 0.1

 

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


for i in range(1,10):
    for n in range(1,i):
        print"%2dx%2d=%2d|" % (i,n,i*n),
    print "\n"+"-"*50
# 将列表L每隔十个值分成一个列表
# 我的
x = []
n = 0
if L:
    x.append(L[n:n + 10]
    n  += 10 
# 依云(百合仙子)的解法,高低立下  - __ -
import math
r = [L[i:i+10] for i in range(math.ceil(len(L)/10))]

Question #13: What gets printed?
56% on 780 times asked

x = True
y = False
z = False

if not x or y:
    print 1
elif not x or not y and z:
    print 2
elif not x or y or not y and x:
    print 3
else:
    print 4

NOT has first precedence, then AND, then OR

Avatar_small
HBSE Board 12th Exam 说:
2021年10月11日 12:31

In the state of Haryana, the Board of School Education (BSEH) conducts the Public Examination 12th Class (Sr. Secondary). The Haryana Board 12th Class Regular Exam is held every year in the month of March, and the Supplementary Exam is held in the month of June. HBSE Board 12th Exam Pattern 2022 Your Annual Exam Date Sheet for Haryana Board 12th Class Students will be released very soon, so get BSEH 12th model paper 2022 from the official website as a reference and prepare accordingly. These model papers will provide students with a detailed understanding of the question structure as well as the exam format.

Avatar_small
civaget 说:
2023年12月09日 21:11

안전카지노's game variety is unmatched. You'll never run out of exciting options to explore.

Avatar_small
civaget 说:
2023年12月14日 18:04

Enhance your nightlife adventures with 오피가이드's wealth of information.

Avatar_small
civaget 说:
2023年12月16日 17:38

I've tried many online casinos, but none compare to 에볼루션카지노. The live baccarat and roulette games are incredible. It's the real deal!


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter