Knowledge organisersIDE Skills
Indentation + file saving.
An IDE (Integrated Development Environment) provides a code editor with features like auto-indentation, syntax highlighting, and file management. Save frequently with Ctrl+S.
.py extensionCtrl+S to save, Ctrl+Z to undo# The IDE highlights keywords in colour:
def greet(name): # 'def' is highlighted
print("Hello") # string in different colour
return True # 'return' highlighted