同样的代码在sublime text里正常运行,放到VScode里就会报错
class Car:
"""一次模拟汽车的简单尝试。"""
def __init__(self, make, model, year):
"""初始化描述汽车的属性。"""
self.make = make
self.model = model
self.year = year
self.odometer_reading = 0
def get_descriptive_name(self):
"""返回整洁的描述性信息。"""
long_name = f"{self.year} {self.make} {self.model}"
return long_name.title()
def read_odometer(self):
"""打印一条指出汽车里程的消息。"""
print(f"This car has {self.odometer_reading} miles on it.")
def update_odometer(self, mileage):
"""将里程表读数设置为指定的值。"""
"""禁止将里程表读数往回调。"""
if mileage >= self.odometer_reading:
self.odometer_reading = mileage
else:
print("You can't roll back an odometer!")
def increment_odometer(self, miles):
"""将里程表读数增加指定的量。"""
if miles >= 0:
self.odometer_reading += miles
else:
print("Roll back forbidden!")
class ElectricCar(Car):
"""电动汽车的独特之处。"""
def __init__(self, make, model, year):
"""初始化父类的属性。"""
super().__init__(make, model, year)
my_tesla = ElectricCar('tesla', 'model s', 2019)
print(my_tesla.get_descriptive_name())
PS C:\Users\DELL> & C:/Users/DELL/AppData/Local/Programs/Python/Python310/python.exe c:/Users/DELL/OneDrive/桌面/python_work/electric_car.py
File "c:\Users\DELL\OneDrive\桌面\python_work\electric_car.py", line 26
else:
TabError: inconsistent use of tabs and spaces in indentation
PS C:\Users\DELL>
重新缩进没有用,而且只有VScode会报错,第26、27、29都报错
啥情况