python学习日03作业(大学python作业)

  • 1、Python的几个编程作业..求教TAT刚开始学….
  • 2、Python作业题求解
  • 3、Python作业题目
  • 4、学计算机的同学帮看一个python入门的作业?

作业要自己做

#!/usr/bin/env python

print ”’I have 3 kinds of fruit:

apple: $1.29/lb

grage: $2.29/lb

orange: $1.5/lb”’

choice = raw_input(‘Which one do you want? ‘)

if choice == ‘grape’:

weight = float(raw_input(‘Ok, grape. How many pounds do you want? ‘))

print ‘the cost is’, round(weight*2.29,2)

elif choice == ‘apple’:

weight = float(raw_input(‘Ok, apple. How many pounds do you want? ‘))

print ‘the cost is’, round(weight*1.29,2)

elif choice == ‘orange’:

weight = float(raw_input(‘Ok, orange. How many pounds do you want? ‘))

print ‘the cost is’, round(weight*1.5,2)

else:

print ‘Sorry, we don\’t have that.’

#!/usr/bin/env python

def smallest(x,y,z):

temp = y if yz else z

return x if xtemp else temp

a = float(raw_input(‘Enter the 1st number: ‘))

b = float(raw_input(‘Enter the 2nd number: ‘))

c = float(raw_input(‘Enter the 3rd number: ‘))

print smallest(a,b,c),’is the smallest.’

#!/usr/bin/env python

left = int(raw_input(‘Enter the beginning integer: ‘))

right = int(raw_input(‘Enter the ending integer: ‘))

print (“All the integers between %d and %d that are divisible by both 3 and 7 are:” %(left,right))

for i in range(left,right+1):

if i%21==0:

print i,

Print = input(“请输入需要强调的话:”)

Print = Print + “!”

number = int(input(“请输入要重复的次数:”))

print(Print * number)

你好的!

我给你做一下第17 题:别的问题需要答案的话,挨个提问,否则没人一下给你回答那么多的问题

import math

 

 

def is_prime(n):  # 简化问题,先利用函数判断是否为质数

    if n == 1:  # =是赋值,==才是判断,切记切记

        return False

    for i in range(2, int(math.sqrt(n))+1):  # 质数判断条件,注意+1

        if n % i == 0:

            return False

    return True

 

 

primes = []

name = int(input())

if is_prime(i) is True:  # bool值用is判断

   print(‘the input number is prime number;’)

else:

   print(‘the input number is not a prime number;’)

编写程序,从键盘上输入三个数字,用输入的第一个数字除以第二个数字,得到的结果和第三个数字相加,在这个过程中注意要捕获异常,根据错误类型去进行异常处理,如果没有触发异常的话,要输出最后的计算结果,程序的最后要输出提示语:程序执行结束。

原创文章,作者:HAFRR,如若转载,请注明出处:https://www.506064.com/n/126339.html

汽车小知识 小米SU7 今日油价 油耗计算器 电耗计算器 购置税计算器 贷款计算器 保险计算器 交通违章代码 体育新闻
(0)
HAFRRHAFRR
上一篇 2024-10-03 23:07
下一篇 2024-10-03 23:07

相关推荐

  • 最大点集合python实现的简单介绍

    1、python找出最大数 2、Python 简明教程 —13,Python 集合 3、python求数组中最大值 4、Python中创建集合的方法有哪些呢? pyth…

  • Letter

    一、什么是Letter Letter是一个Java库,它提供了一种轻便易用的方式来生成PDF文档、HTML邮件和纯文本邮件。 Letter具有良好的可扩展性,支持模板引擎,使用户可…

    编程 2024-11-08
  • Python工程师遭遇spawnerror

    一、引言 Python是一种高级编程语言,以其易学易用和优秀的生态系统而受到广泛关注和使用。然而,在使用Python进行开发时,我们难免会碰到一些运行时出现的问题。其中,spawn…

    编程 2024-10-04
  • Webpackless全局配置方案

    一、Webpackless介绍 Webpackless是一种全局的配置方案,它针对Webpack构建工具的配置进行了优化和简化。Webpackless采用了一个叫做lesser-c…

    编程 2024-11-13
  • 了解接口返回状态码的含义与使用方法

    接口状态码是 API 系统中常见的状态码,也是 API 与前端的数据传递标准之一。接口状态码不仅仅能够反映操作结果,还可以发挥重要的错误提示作用,让前端及时了解 API 系统运行状…

    编程 2024-11-01
  • 以及在php中同等功能的实现的简单介绍

    本文目录一览: 1、PHP实现搜索查询功能的方法技巧 2、用php实现一个小功能 3、php功能实现 4、用PHP实现一个生成BAT批处理的功能 5、什么是MVC以及PHP怎样实现…

    编程 2024-10-03
  • cad2016选择集关不了,cad选择集怎么关闭

    本文目录一览: 1、CAD怎样取消选择集? 2、为什么CAD中选中后会出现这个选择集的东西,如何去掉 3、选择集怎么关掉cad 4、如何去除CAD2011 选择集图框, 每次选择线…

    编程 2024-10-04
  • List.clear详解

    一、List.clear作用 List是Java中常用的数据结构之一,它可以存储一组有序的数据。而List.clear()方法则可清空列表中的所有元素。当我们需要清空一个列表中的所…

    编程 2024-11-01
  • rfm模型及python实现的简单介绍

    本文目录一览: 1、数据蛙-Python进阶 2、用户价值分层——基于RFM模型的研究分析 3、基于RFM的客户价值分析报告 4、python数据分析项目:用户消费行为分析 5、k…

    编程 2024-11-01
  • 用C++实现字符串操作

    一、字符串基础知识 在C++中,字符串是一串以null字符(\0)结尾的字符序列,也就是一个字符数组。 #include <iostream> #include &lt…

    编程 2024-11-15

发表回复

登录后才能评论