python编程题经典100例,python编程求100-1000范围内被9除余7、被5除3的最小两个整数?

python编程题经典100例目录

题目:有关Python语言的题,急!!!!!!

python编程求100-1000范围内被9除余7、被5除3的最小两个整数?

python程序问题

题目:有关Python语言的题,急!!!!!!

晕....又碰到一个是这个做也的好友...给你贴下代码吧..哈哈

第一题:

#!/usr/bin/env python

#-*- coding: GB2312 -*-

while True:

filename = raw_input('输入文本路径:')

if filename != 'exit':

txtfile = file(filename, 'r+')

content = txtfile.readlines()

txtfile.close()

txtfile = file(filename, 'w')

for re in content:

txtfile.write(re.capitalize())

txtfile.close()

print '文本行首单词字母大写化操作成功!'

else:

break

截图:

对了.你怎么没有第七题呀?刚看到有几个都有的呢...我也回答了.顺便给你贴上吧...难道你们都是同一个班的??

#!/bin/usr/python

#-*-coding:GB2312-*-

#filename:Fileproperties.py

import os

import time

def Show_File_Properties(path):

'''

Function_Name:Show_File_Properties(path)

显示文件的属性-包括路径、大小、创建时间、最后修改时间、最后访问时间

'''

for root,dirlist,filelist in os.walk(path):

print '路径:' + root.replace(':', ':\\') + '\\'

for filename in filelist:

if filename[-4:] == '.txt':

state = os.stat(os.path.join(root,filename))

info = '文件名:' + filename + '\n'

info = info + '大小:' + ('%d' %state[-4]) + ' Byte\n'

t = time.strftime('%Y-%m-%d %X',time.localtime(state[-1]))

info = info + '创建时间:' + t + '\n'

t = time.strftime('%Y-%m-%d %X',time.localtime(state[-2]))

info = info + '修改时间:' + t + '\n'

t = time.strftime('%Y-%m-%d %X',time.localtime(state[-3]))

info = info + '访问时间:' + t + '\n'

print info

if __name__ == '__main__':

while True:

path = raw_input('路径:')

if path != 'exit':

Show_File_Properties(path)

else:

break

截图:

python编程求100-1000范围内被9除余7、被5除3的最小两个整数?

#求100-1000范围内被9除余7、被5除3的最小两个整数

for i in range(100,1000):

if i%9==7:

print('{}除以9余7'.format(i))

break #跳出循环

for j in range(100,1000):

if j%5==3:

print('{}除以5余3'.format(j))

break#跳出循环

python程序问题

QQ程序不支持这种调用的。

python操作很多windows程序是使用的COM接口什么的。

system或者popen是等被调用的执行完才返回的。

而且QQ也不会接收stdin输入的,也无法用stdout的,用python基本无法控制。 (随机推荐阅读本站500篇优秀文章点击前往:500篇优秀随机文章)

来源:本文由易搜IT博客原创撰写,欢迎分享本文,转载请保留出处和链接!