https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 47ff306598965aea6b03f26ae9746c4264bf1556 authored by renchao.lu on 13 March 2021, 10:21:07 UTC
Merge branch 'VolumeFraction_' into 'master'
Tip revision: 47ff306
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