#!/usr/bin/env python3
# Simple Python script for testing
"""
This is a docstring
spanning multiple lines
"""
# This is a comment
return f
# Expected counts:
# Blank: 3
# Comment: 6 (shebang is code, but # comments and docstring)
# Code: 6
# Total: 15