IndentationError: unexpected unindent WHY?

后端 未结 4 1162
盖世英雄少女心
盖世英雄少女心 2021-01-01 09:10

IndentationError: unexpected unindent WHY???

#!/usr/bin/python
import sys
class Seq:
    def __init__(self, id, adnseq, colen):
        self.id     = id
             


        
4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-01 09:42

    you didn't complete your try statement. You need and except in there too.

提交回复
热议问题