Python IF / Else语法不起作用

时间:2018-06-20 08:57:28

标签: python

我在if / else条件下面临问题。

我的代码和错误如下

Observable
    .forkJoin(promises).subscribe(() => {
        this.messagesService.createMessage('success', `Saved`);
        this.router.navigate(['/dashboard/my-calculations']);
    },
    (error) => {
        //handle your error here
    }, () => {
        //observable completes
    })

请建议我解决问题。

先谢谢了。 Saroware Mahmud

1 个答案:

答案 0 :(得分:4)

您有缩进问题。请查看以下代码:

y=50
if y<0:
    y=0
    print('Negative not acceptable.')
elif y==0:
    print("this is y==0 block")