https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 8260f07d12e0e9b1b92ed1cf7ad34f8c660b73fd authored by Lars Bilke on 17 February 2021, 08:37:10 UTC
Merge branch 'cpm-submodules' into 'master'
Tip revision: 8260f07
print23.py
#!/usr/bin/env python3

# Print statement that behaves the same for python 2 and 3.
# E,g, print_(1.0, 2, "5") will always print the string "1.0 2 5".
def print_(*args):
    print(" ".join(str(a) for a in args))
back to top