mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
6 lines
194 B
Python
6 lines
194 B
Python
from kwic import kwic
|
|
|
|
document = "" # Input no data
|
|
|
|
if __name__ == "__main__":
|
|
assert(kwic(document) == []) # Ensure that results are empty because there's no data |