- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试编写一个程序来执行简单的算术运算。我想让程序提示用户输入两个数字,然后计算出五个结果:
现在,我记得在 Python 2 中,通常有用于字符串的 raw_input 和用于数字的输入。但是,我只是在学习 Python 3,默认情况下输入是一个字符串,对于数字,我必须指定我希望拥有的数字类型:即 int(input()) 或 float(输入())。
因此,例如,假设我想要准确的输出(使用输入 4 和 2.5):
What is the first number? 4
What is the second number? 2.5
The sum is 6.5
The difference is 1.5
The product is 8.0
The integer quotient is 2
The floating-point quotient is 1.6
我会在 Python 2 中输入这段代码:
x=input ("What is the first number? ")
y=input ("What is the second number? ")
print "The sum is", x+y
print "The difference is", x-y
print "The product is", x*y
print "The integer quotient is", int(x)/int(y)
print "The floating-point quotient is", float(x)/float(y)
但是,我无法在 Python 3 中完成它。这是我正在使用的(错误的)代码:
x = int(input("What is the first number? "))
y = int(input("What is the second number? "))
print("The sum is: ", x+y)
print("The difference is: ", x-y)
print("The product is: ", x*y)
print("The integer quotient is: ", x/y)
print("The floating-point quotient is: ", x/y)
显然,我收到一条错误消息,因为我的第二个输入 (y) 等于 4.5,这是一个 float 而不是我输入定义的 int。我没有费心将 float(x)/float(y) 用于浮点商,因为这也是矛盾的(因此是一个错误)。
我当然可以像这样使用 float 而不是 int:
x = float(input("What is the first number? "))
y = float(input("What is the second number? "))
但在这种情况下,我的乘积会得到 10.0(不是 10),我的整数商是 float (1.6 而不是 2)
我发现在 Python 3 中我不能要求输入的通用类型数字(无需指定它是 float 还是 int),这真的很令人沮丧。因此,我坚持使用这种简单的程序,非常感谢任何解决方案/解释。
最佳答案
您可以尝试将输入解析为 int
,如果这不起作用,则将其视为 float
:
def float_or_int(x):
try:
return int(x)
except ValueError:
return float(x)
x = float_or_int(input("What's x?"))
y = float_or_int(input("What's y?"))
要在 Python 3 中进行地板除法,您必须使用 //
运算符明确请求它:
print("The integer quotient is:", x//y)
请注意,这种“整数商”运算对于浮点输入没有实际意义。
关于 python 3 : Basic arithmetic operations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18937071/
我阅读了以下问题:Value of i for (i == -i && i != 0) to return true in Java并留下了微微的眼花。 一读到spacecraft being los
我试图记住 Javascript 中称为“发条算术”的东西,我很久以前在有关幻灯片/轮播的教程中读过它。 (术语可能有误,因为我在谷歌中找不到任何有用的东西) 它是以下代码的简写: a = a + 1
我想知道类型转换在实践中是如何在类型之间进行的(在“嵌入式”C 中)。例如:如果我有一个 Signed 16-bit 数字,值为 -80d,11010000b,我想将它转换为 无符号 16 位。我
题目地址:https://leetcode.com/problems/arithmetic-slices/description/ 题目描述 Asequence of number is call
假设我有以下 data.frame 由多行(此处未全部显示)和 31 列组成。第一个(并且应该保留)标记为“gene_ID”,从第二个一直到第 30 列,它们都有奇怪的名称,如下所示: |gene_
我正在尝试从 Sightly 列表中的项目总数中减去 2。 ${itemList.size -2 @ context='number'} 结果是: org.
接听时this问题 我尝试运行此代码(用于生成给定范围内的随机数); #include #include #include #include int main() { int max_r
虽然至少从手波的角度来看,我相信我知道“算术运算符”是什么,但我正在寻找一个正式的定义。我检查了 C17 标准文档,但找不到这样的定义,尽管它在多个地方使用了术语“算术运算符”。 我能找到的最接近的是
您好,我正在使用 SFML 开发游戏,但我遇到了函数问题。 这是代码: 敌人.h: #ifndef ENEMY_H #define ENEMY_H #include c
在惯用的 C 风格中,可以使用两个参数以一种简单的方式实现快速排序: void quicksort(int inputArray[], int numelems); 我们可以通过指针算法安全地使用两个
众所周知,我们可以通过算术表达式在SQL语句中进行计算。算术表达式可以包含列名、数值和算术运算。以下是 SQL 语句语法: SELECT [arithmetic operator]... FROM [
如何解决这些警告? // midiNote is a double as it is used in floating point equation // v is int because that'
我正在使用提示创建一个基本计算器。用户输入一个数字、一个操作数和另一个数字,这将为他们提供正确的答案。 问题:无论使用哪种运算符,我的号码都在成倍增加。例如,输入 5+5 得到的值是 25。 为什么我
如果我有定义: typedef struct y_t *Y; 和 typedef struct x_t *X; struct x_t { Y *b; Y a; int s
我正在使用 Android 工具链编译 Android 内核。在驱动程序内部,我需要使用 double 算术,但是当我编译时,我会遇到很多错误,每次使用 double 类型时都会出现一个错误。例如我得
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我需要有关 JSP 中以下 EL 代码段的说明 $ {5/x} : ${5/x} $ {10/0} : ${10/0} $ {5/2} : ${5/2} $ {x/10} : ${x/10} $ {5
我正在尝试编写一个包含小于或大于的脚本,但它给了我以下错误消息:语法错误:需要算术表达式请告知下面的代码示例: x=1 for ($x -lt 21) -- I tried the fo
我正在尝试编写一个程序来执行简单的算术运算。我想让程序提示用户输入两个数字,然后计算出五个结果: 总和 区别 产品 两个整数的商 浮点除法。 现在,我记得在 Python 2 中,通常有用于字符串的
我一直在努力理解这个程序的输出: #include int main(){ static int arr[] = {0, 1, 2, 3, 4}; int *p[] = {ar
我是一名优秀的程序员,十分优秀!