Python Forum
strange change of the indention to 3 spaces
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
strange change of the indention to 3 spaces
#29
all originally 3 spaced. Seeing if this happens after removing WYSIWYG editor

NO TAGS showing in preview no indentation whatsoever
def foo():
"""This is just some dummy code"""
 
  a=0
  for n in range(10):
      a+=n
  return a
PYTHON TAGS showing in preview 3 spaces
def foo():
"""This is just some dummy code"""
  
  a=0
  for n in range(10):
      a+=n
  return a
CODE TAGS showing in preview 3 spaces
def foo():
"""This is just some dummy code"""
   
   a=0
   for n in range(10):
       a+=n
   return a
Recommended Tutorials:
Reply


Messages In This Thread
RE: strange change of the indention to 3 spaces - by metulburr - May-25-2017, 12:36 AM

Forum Jump:

User Panel Messages

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