英文:
why my 'else' function work when there is 'if' function that performing?
问题
[如果我使用'/',那就没问题,但如果我使用其他选项,那么'else'函数会起作用,但不应该](https://i.stack.imgur.com/23CbB.png)
我尝试替换这个'else'的位置,但这并没有起作用
```python
print('шо ти, голова?')
what = input('пиши шо хоч (+, -, *, /) : ')
if what == '+':
a = input('до якого числа будем додавати?: ')
b = input('яке число будем додавати?: ')
c = float(a) + float(b)
print(float(c))
if what == '-':
a = input('від якого числа будем віднімати?: ')
b = input('яке число будем віднімати?: ')
c = float(a) - float(b)
print(float(c))
if what == '*':
a = input('яке число будем множити?: ')
b = input('на яке число будем множити?: ')
c = float(a) * float(b)
print(float(c))
if what == '/':
a = input('яке число будем ділити?: ')
b = input('на яке число будем ділити?: ')
c = float(a) / float(b)
print(float(c))
else: print("ти шото не то вибрав, друже!")
<details>
<summary>英文:</summary>
[if i use '/' than its ok, but if i use any other option, than 'else' function is working but shouldnt](https://i.stack.imgur.com/23CbB.png)
I tried to replace this 'else' somewhere, but this didnt work
print('шо ти, голова?')
what = input('пиши шо хоч (+, -, *, /) : ')
if what == '+':
a = input('до якого числа будем додавати?: ')
b = input('яке число будем додавати?: ')
c = float(a) + float(b)
print(float(c))
if what == '-':
a = input('від якого числа будем віднімати?: ')
b = input('яке число будем віднімати?: ')
c = float(a) - float(b)
print(float(c))
if what == '*':
a = input('яке число будем множити?: ')
b = input('на яке число будем множити?: ')
c = float(a) * float(b)
print(float(c))
if what == '/':
a = input('яке число будем ділити?: ')
b = input('на яке число будем ділити?: ')
c = float(a) / float(b)
print(float(c))
else: print("ти шото не то вибрав, друже!")
</details>
# 答案1
**得分**: 1
你面临的问题是由于你的代码中else语句的位置不正确。在你目前的代码中,`else`语句仅与最后一个`if`条件关联,即`(if what == '/')`。请尝试使用`if..elif..else`语法,如下所示-
```python
print('шо ти, голова?')
what = input('пиши шо хоч (+, -, *, /) : ')
if what == '+':
a = input('до якого числа будем додавати?: ')
b = input('яке число будем додавати?: ')
c = float(a) + float(b)
print(float(c))
elif what == '-':
a = input('від якого числа будем віднімати?: ')
b = input('яке число будем віднімати?: ')
c = float(a) - float(b)
print(float(c))
elif what == '*':
a = input('яке число будем множити?: ')
b = input('на яке число будем множити?: ')
c = float(a) * float(b)
print(float(c))
elif what == '/':
a = input('яке число будем ділити?: ')
b = input('на яке число будем ділити?: ')
c = float(a) / float(b)
print(float(c))
else:
print("ти шото не то вибрав, друже!")
英文:
The issue you're facing is due to the placement of the else statement in your code. In your current code, the else
statement is only associated with the last if
condition i.e (if what == '/')
. Try with if..elif..else
syntax like below-
print('шо ти, голова?')
what = input('пиши шо хоч (+, -, *, /) : ')
if what == '+':
a = input('до якого числа будем додавати?: ')
b = input('яке число будем додавати?: ')
c = float(a) + float(b)
print(float(c))
elif what == '-':
a = input('від якого числа будем віднімати?: ')
b = input('яке число будем віднімати?: ')
c = float(a) - float(b)
print(float(c))
elif what == '*':
a = input('яке число будем множити?: ')
b = input('на яке число будем множити?: ')
c = float(a) * float(b)
print(float(c))
elif what == '/':
a = input('яке число будем ділити?: ')
b = input('на яке число будем ділити?: ')
c = float(a) / float(b)
print(float(c))
else:
print("ти шото не то вибрав, друже!")
答案2
得分: 0
你遇到的问题是因为else
关键字只与代码中最后一个if
语句相关,而在你的代码中,最后一个if
语句是这个:if what == '/':
要解决这个问题,你需要使用elif
关键字,它是Python中的else if
的等价物。
以下是已更正的代码:
print('шо ти, голова?')
what = input('пиши шо хоч (+, -, *, /) : ')
if what == '+':
a = input('до якого числа будем додавати?: ')
b = input('яке число будем додавати?: ')
c = float(a) + float(b)
print(float(c))
elif what == '-':
a = input('від якого числа будем віднімати?: ')
b = input('яке число будем віднімати?: ')
c = float(a) - float(b)
print(float(c))
elif what == '*':
a = input('яке число будем множити?: ')
b = input('на яке число будем множити?: ')
c = float(a) * float(b)
print(float(c))
elif what == '/':
a = input('яке число будем ділити?: ')
b = input('на яке число будем ділити?: ')
c = float(a) / float(b)
print(float(c))
else:
print("ти шото не то вибрав, друже!")
英文:
The issue your facing is because the else
keyword is only related to the last if
-statement in your code, which happens to be this: if what == '/':
To fix this issue, you have to use the elif
keyword, which is the python equivalent for else if
.
Here is the corrected code:
print('шо ти, голова?')
what = input('пиши шо хоч (+, -, *, /) : ')
if what == '+':
a = input('до якого числа будем додавати?: ')
b = input('яке число будем додавати?: ')
c = float(a) + float(b)
print(float(c))
elif what == '-':
a = input('від якого числа будем віднімати?: ')
b = input('яке число будем віднімати?: ')
c = float(a) - float(b)
print(float(c))
elif what == '*':
a = input('яке число будем множити?: ')
b = input('на яке число будем множити?: ')
c = float(a) * float(b)
print(float(c))
elif what == '/':
a = input('яке число будем ділити?: ')
b = input('на яке число будем ділити?: ')
c = float(a) / float(b)
print(float(c))
else:
print("ти шото не то вибрав, друже!")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论