mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 18:32:29 +00:00
11 lines
215 B
Python
11 lines
215 B
Python
|
#!/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()
|