mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
11 lines
215 B
Python
Executable File
11 lines
215 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
print("1" + "\t" + "Value 1", end="\n")
|
|
print("2" + "\t" + "Value 2", end="\n")
|
|
print("3" + "\t" + "Value 3", end="\n")
|
|
|
|
sys.stdout.flush()
|