{}
run-icon
main.py
# Example of NULL character in Python s = "Hello, World!\0This part is ignored." print("String:", s) # Output: Hello, World!This part is ignored. print("Length:", len(s)) # Output: 35 assert chr(0) == "\0"
Output