Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Indentation
#17
Hello!

May I ask why such an indentation is there with almost every code editor including python IDE, sublime text, PyScripter, visual studio codes, Pycharm...! This is happening everywhere with many python programmers,not only with me....

Me think, is there any possibility that the computer might have carried some kinds of malwares or spywares that could affect the code editor softwares, that the computer could not be able to accurately acquire exactly indentation spaces that is needed to initiate python codes...is it possible?

As to Reference the lase codes I have been working with as when I have got this very odd conclusion lol :D:

from tkinter import *
import tkinter.messagebox
import sqlite3 as db

class Product(Tk):
	def __init__(self):
		super(Product, self).__init__()

		self.geometry("1000x600+150+50")
		self.wm_title('Product Window')
		self.wm_iconbitmap('myicon.ico')

    def createtable(self):
 		conn=db.connect('deepak.db')
		cur=conn.cursor()
		cur.execute('''CREATE TABLE IF NOT EXISTS data
					( sidTEXT,
					nameTEXT,
					fathernameTEXT,
					mothernameTEXT,
					genderTEXT,
					mobileTEXT,
					addressTEXT
					)''')

		conn.commit()
		cur.close()
		print("Database is created Successfully........")

root= Product()
root.mainloop()
The error was message was:

Error:
File "C:\Users\asus\Documents\python\test1.py", line 15 def createtable(self): ^ IndentationError: unindent does not match any outer indentation level [Finished in 0.4s]
Reply


Messages In This Thread
Indentation - by Truman - Apr-19-2019, 12:01 AM
RE: Indentation - by ichabod801 - Apr-19-2019, 12:27 AM
RE: Indentation - by Truman - Apr-19-2019, 12:32 AM
RE: Indentation - by kus - Apr-19-2019, 03:33 AM
RE: Indentation - by Truman - Apr-20-2019, 12:04 AM
RE: Indentation - by micseydel - Apr-20-2019, 01:26 AM
RE: Indentation - by Truman - Apr-20-2019, 01:20 PM
RE: Indentation - by Skaperen - Apr-20-2019, 02:08 AM
RE: Indentation - by Skaperen - Apr-21-2019, 01:11 AM
RE: Indentation - by Truman - Apr-21-2019, 02:57 PM
RE: Indentation - by Skaperen - Apr-22-2019, 08:10 PM
RE: Indentation - by Gribouillis - Apr-22-2019, 08:17 PM
RE: Indentation - by Truman - Apr-22-2019, 09:26 PM
RE: Indentation - by Gribouillis - Apr-22-2019, 09:40 PM
RE: Indentation - by Truman - Apr-22-2019, 09:55 PM
RE: Indentation - by Skaperen - Apr-22-2019, 11:54 PM
RE: Indentation - by ehssandannouf - Aug-28-2020, 09:24 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020