山东理工大学SDUT - ACM OJ 题: Python代码 及分析

简介: Python基础语法学习完成,先刷基础题100道巩固 ,附 题目、代码、知识分析 题目:http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1000.

Python基础语法学习完成,先刷基础题100道巩固 ,附 题目、代码、知识分析

 

题目:http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1000.html

代码:
s = input().split();
print((int)(s[0])+(int)(s[1]))

知识分析:
1、python输入 input()   
2、split() 是分割字符串操作
3、python可以用str[0] 取字符串下标为0的字符
1000、A+B Problem

  

题目:http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1010.html

代码:
while True:
    s=input().split()
    print((int)(s[0])+(int)(s[1]))

分析知识:
1、Python的布尔类型有 True False  记住是大写
2、while True :   后面冒号必须有  括号不一定需要有,规范是没有  和java不同
1010、A+B for Input-Output Practice (I)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1011.html

代码:
num = (int)(input())
for i in range(1,num+1):
    s = input().split()
    print((int)(s[0])+(int)(s[1]))

知识分析:
1、for 循环使用 结构   for i in range(1,num+1)
     则 i 的取值范围是 1 到 num  
1011、A+B for Input-Output Practice (II)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1012.html

代码:
while True:
    s = input().split()
    if (int)(s[0])==0 and (int)(s[1])==0:
        break
    print((int)(s[0])+(int)(s[1]))


知识分析:
1、python的且运算是and  或运算是or   
1012、A+B for Input-Output Practice (III)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1013.html

代码:
while True:
    s=input().split()
    if s==['0']:
        break
    sum = 0;
    for i in range(1,len(s)):
        sum=sum+(int)(s[i])
    print(sum)
1013、A+B for Input-Output Practice (IV)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1014.html

代码:
s = input()
for i in range(0 , int(s)):
    s=input().split()
    sum = 0;
    for i in range(1,len(s)):
        sum=sum+(int)(s[i])
    print(sum)
1014、A+B for Input-Output Practice (V)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1015.html

代码:
while True:
    s=input().split()
    sum=0
    for i in range(1,len(s)):
        sum+=(int)(s[i])
    print(sum)

知识分析:
无
1015、A+B for Input-Output Practice (VI)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1016.html

代码:
while True:
    s=input().split()
    print((int)(s[0])+(int)(s[1]))
    print()
1016、A+B for Input-Output Practice (VII)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1017.html

代码:
s=input()
for i in range(0,(int)(s)):
    ss = input().split()
    sum = 0;
    for j in range(1,len(ss)):
        sum+=(int)(ss[j])
    print(sum)
    print()
1017、A+B for Input-Output Practice

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1123.html

代码:
num=(int)(input())
if num==0:
    print(1)
else:
    sum = 1;
    i=0
    for i in range(1,num+1):
        sum *= i

    print(sum)

知识分析:
1、if  else 里面都需要有:
1123、求阶乘(循环结构)

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1201.html

代码:
s=input().split(" ")
#将三个字符串加入列表
list = []
list.append(s[0])
list.append(s[1])
list.append(s[2])
list.sort()

for i in range(len(list)):
    print(list[i],end='')
    print(" ",end='')


知识分析:
1、list添加元素方法 append
2、list排序方法 sort()
3、输出不换行 加 ,end=''
1201、字符串排序

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1249.html

代码:
while True:
    s = input()
    print(s.title())


知识分析:
1、input()输入后即 字符串
2、s.title()  内置方法  将每个单词的第一个字母转为大写 其余小写


其他方法如下:

str = "www.runoob.com"
print(str.upper())          # 把所有字符中的小写字母转换成大写字母
print(str.lower())          # 把所有字符中的大写字母转换成小写字母
print(str.capitalize())     # 把第一个字母转化为大写字母,其余小写
print(str.title())          # 把每个单词的第一个字母转化为大写,其余小写 
执行以上代码输出结果为:
WWW.RUNOOB.COM
www.runoob.com
Www.runoob.com
Www.Runoob.Com
1249、首字母变大写

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/1442.html

代码:
num=(int)(input())
for i in range(0,num):
    s = input().split(" ")
    # 用空格分割 是字符串  转成整形 存到列表中
    list = []
    list.append((int)(s[0]))
    list.append((int)(s[1]))
    list.append((int)(s[2]))
    ave = (list[0]+list[1]+list[2])/3  #算平均数
    isLarge = 0  # 3个数中 大于平均数的个数
    for j in list:
        if j > ave:
            isLarge+=1

    if isLarge>1:
        print("Yes")
    else:
        print("No")

知识分析:
1、range(0,num) 的取值范围是0到num-1
2、 s = input().split(" ")   获取的是用空格分割的字符串 并存入到列表中 
    比如输入 : 1 2 3
    s 的值就是 : ['1', '3', '4']
1442、优越数

 

 

题目:
http://acm.sdut.edu.cn/onlinejudge2/index.php/Home/Index/problemdetail/pid/2247.html


代码:
s=input().split(" ")
print(s[0].count(s[1]))


知识分析:
1、str.count(s) 返回s在str中出现的次数
2247、统计次数问题

 

相关文章
|
9天前
|
数据采集 缓存 定位技术
网络延迟对Python爬虫速度的影响分析
网络延迟对Python爬虫速度的影响分析
|
6天前
|
缓存 监控 测试技术
Python中的装饰器:功能扩展与代码复用的利器###
本文深入探讨了Python中装饰器的概念、实现机制及其在实际开发中的应用价值。通过生动的实例和详尽的解释,文章展示了装饰器如何增强函数功能、提升代码可读性和维护性,并鼓励读者在项目中灵活运用这一强大的语言特性。 ###
|
9天前
|
缓存 开发者 Python
探索Python中的装饰器:简化代码,增强功能
【10月更文挑战第35天】装饰器在Python中是一种强大的工具,它允许开发者在不修改原有函数代码的情况下增加额外的功能。本文旨在通过简明的语言和实际的编码示例,带领读者理解装饰器的概念、用法及其在实际编程场景中的应用,从而提升代码的可读性和复用性。
|
5天前
|
Python
探索Python中的装饰器:简化代码,提升效率
【10月更文挑战第39天】在编程的世界中,我们总是在寻找使代码更简洁、更高效的方法。Python的装饰器提供了一种强大的工具,能够让我们做到这一点。本文将深入探讨装饰器的基本概念,展示如何通过它们来增强函数的功能,同时保持代码的整洁性。我们将从基础开始,逐步深入到装饰器的高级用法,让你了解如何利用这一特性来优化你的Python代码。准备好让你的代码变得更加优雅和强大了吗?让我们开始吧!
13 1
|
10天前
|
设计模式 缓存 监控
Python中的装饰器:代码的魔法增强剂
在Python编程中,装饰器是一种强大而灵活的工具,它允许程序员在不修改函数或方法源代码的情况下增加额外的功能。本文将探讨装饰器的定义、工作原理以及如何通过自定义和标准库中的装饰器来优化代码结构和提高开发效率。通过实例演示,我们将深入了解装饰器的应用,包括日志记录、性能测量、事务处理等常见场景。此外,我们还将讨论装饰器的高级用法,如带参数的装饰器和类装饰器,为读者提供全面的装饰器使用指南。
|
6天前
|
存储 缓存 监控
掌握Python装饰器:提升代码复用性与可读性的利器
在本文中,我们将深入探讨Python装饰器的概念、工作原理以及如何有效地应用它们来增强代码的可读性和复用性。不同于传统的函数调用,装饰器提供了一种优雅的方式来修改或扩展函数的行为,而无需直接修改原始函数代码。通过实际示例和应用场景分析,本文旨在帮助读者理解装饰器的实用性,并鼓励在日常编程实践中灵活运用这一强大特性。
|
10天前
|
存储 算法 搜索推荐
Python高手必备!揭秘图(Graph)的N种风骚表示法,让你的代码瞬间高大上
在Python中,图作为重要的数据结构,广泛应用于社交网络分析、路径查找等领域。本文介绍四种图的表示方法:邻接矩阵、邻接表、边列表和邻接集。每种方法都有其特点和适用场景,掌握它们能提升代码效率和可读性,让你在项目中脱颖而出。
24 5
|
8天前
|
机器学习/深度学习 数据采集 人工智能
探索机器学习:从理论到Python代码实践
【10月更文挑战第36天】本文将深入浅出地介绍机器学习的基本概念、主要算法及其在Python中的实现。我们将通过实际案例,展示如何使用scikit-learn库进行数据预处理、模型选择和参数调优。无论你是初学者还是有一定基础的开发者,都能从中获得启发和实践指导。
20 2
|
10天前
|
数据库 Python
异步编程不再难!Python asyncio库实战,让你的代码流畅如丝!
在编程中,随着应用复杂度的提升,对并发和异步处理的需求日益增长。Python的asyncio库通过async和await关键字,简化了异步编程,使其变得流畅高效。本文将通过实战示例,介绍异步编程的基本概念、如何使用asyncio编写异步代码以及处理多个异步任务的方法,帮助你掌握异步编程技巧,提高代码性能。
29 4
|
12天前
|
缓存 开发者 Python
探索Python中的装饰器:简化和增强你的代码
【10月更文挑战第32天】 在编程的世界中,简洁和效率是永恒的追求。Python提供了一种强大工具——装饰器,它允许我们以声明式的方式修改函数的行为。本文将深入探讨装饰器的概念、用法及其在实际应用中的优势。通过实际代码示例,我们不仅理解装饰器的工作方式,还能学会如何自定义装饰器来满足特定需求。无论你是初学者还是有经验的开发者,这篇文章都将为你揭示装饰器的神秘面纱,并展示如何利用它们简化和增强你的代码库。