我试图在Python 3.2中创建一个应用程序,我一直使用制表符进行缩进,但即使是编辑器也将其中一些更改为空格,然后在我试图运行程序时打印出“在缩进中使用制表符和空格不一致”。

如何将空格改为制表符?快把我逼疯了。

import random

attraktioner = ["frittfall","bergodalbana","spökhuset"]


class Nojesfalt:
    def __init__(self, attraktion):
        self.val = attraktion
        self.langd = 0
        self.alder = 0


#längdgräns för fritt fall
    def langdgrans(self):
        print("")
        self.langd = int(input("Hur lång är du i cm? "))
        if self.langd < 140:
            print("tyvärr, du är för kort, prova något annat")
            return 0
        elif self.langd >= 140:
            print("håll dig hatten, nu åker vi!")
            print(" ")
            return 1

#åldersgräns för spökhuset
    def aldersgrans(self):
        print("")
        self.alder = int(input("Hur gammal är du? "))
        if self.alder < 10:
            print("tyvärr, du är för ung, prova något annat")
            return 0
        elif self.alder >= 10:
            print("Gå in om du törs!")
            print(" ")
            return 1


#åker attraktion frittfall lr bergodalbana
        def aka(self):
                print("")
        print(self.val)
        tal = random.randint(0,100)
        if tal < 20:
            print("åkturen gick åt skogen, bättre lycka nästa gång")
        elif tal >= 20:
            print("jabbadabbbadoooooooo")
            return 1

#går i spökhuset
        def aka1(self):
                print("")
        print(self.val)
        tal = random.randint(0,100)
        if tal < 20:
            print("du är omringad av spöken och kan inte fortsätta")            return 0
        elif tal >= 20:
            print("Buhuuuuuu, buuuhuuuu")
            return 1

#programkod
print("Välkommen till nöjesfältet, vad vill du göra?")
print(" ")

while 1:
    vald_attr = input("Vad vill du göra?\n1. frittfall\n2. bergodalbana\n3. spökhuset\n4. Avsluta\n")
    if vald_attr == "1":
        val = Nojesfalt(attraktioner[0])
        if val.langdgrans() == 1:
            val.aka()
    elif vald_attr == "2":
        val = Nojesfalt(attraktioner[1])
        val.aka()
    elif vald_attr == "3":
        val = Nojesfalt(attraktioner[2])
        if val.aldersgrans() == 1:
            val.aka1()
    elif vald_attr == "4":
        break

当前回答

使用Vim编辑器解决这个问题

Open terminal (Ctrl + Alt + T). Go to the directory where the file is located (cd <path_to_your_directory>). Ex: cd /home/vineeshvs/work. Open the file in Vim (vim <file_name>). Ex: vim myfile.txt . [Optional step] Enable search keyword highlighting in Vim (ESC :set hlsearch) Go to the line where you have this problem (ESC :<line_number>). Ex: :53 in Vim editor after pressing ESC button once. Replace tabs using the required number of spaces in Vim (:.,$s/\t/<give_as_many_spaces_as_you_want_to_replace_tab>/gc). Ex: Tab will be replaced with four spaces using the following command: :.,$s/\t/ /gc after pressing ESC button once). This process is interactive. You may give y to replace the tab with spaces and n to skip a particular replacement. Press ESC when you are done with the required replacements.

其他回答

下面的技巧对我很管用:

将代码复制并粘贴到记事本中。 然后从记事本再次选择所有和复制的代码 粘贴到我的views.py 在views.py中选择所有新粘贴的代码,并通过按shift+tab键从键盘上删除所有制表符 现在再次使用tab键来使用适当的缩进

不要使用标签。

将编辑器设置为使用4个空格作为缩进。 进行搜索和替换,将所有制表符替换为4个空格。 确保编辑器设置为将制表符显示为8个空格。

注意:制表符使用8个空格的原因是,当无意中插入制表符时,您可以立即注意到-例如从使用制表符而不是空格的示例代码中复制和粘贴时。

当同样的错误弹出时,我所做的是:选择所有内容(Str + A)并按Shift + Tab。所以不再有缩进了。现在回到你想要缩进的行,把它放回你想要的位置。

这对我很管用……

使用Vim编辑器解决这个问题

Open terminal (Ctrl + Alt + T). Go to the directory where the file is located (cd <path_to_your_directory>). Ex: cd /home/vineeshvs/work. Open the file in Vim (vim <file_name>). Ex: vim myfile.txt . [Optional step] Enable search keyword highlighting in Vim (ESC :set hlsearch) Go to the line where you have this problem (ESC :<line_number>). Ex: :53 in Vim editor after pressing ESC button once. Replace tabs using the required number of spaces in Vim (:.,$s/\t/<give_as_many_spaces_as_you_want_to_replace_tab>/gc). Ex: Tab will be replaced with four spaces using the following command: :.,$s/\t/ /gc after pressing ESC button once). This process is interactive. You may give y to replace the tab with spaces and n to skip a particular replacement. Press ESC when you are done with the required replacements.

我也遇到了同样的问题,我意识到问题是我从另一个python编辑器复制了代码到sublime。

我在用jupyter笔记本,然后我把代码复制到sublime。显然,当你做特定的修改(比如移动函数中的代码)时,缩进就会变得混乱,这就是问题的来源。

所以只使用一个编辑器。如果你这样做了,那么你就没有问题了。