Revision 51758d796aff9f57579d7bd9174edcd026221569 authored by wenqing on 29 September 2021, 15:05:56 UTC, committed by wenqing on 29 September 2021, 15:05:56 UTC
[TH2M] Enable to use pressure, strain, stress dependent permeability models

See merge request ogs/ogs!3804
2 parent s e2b75f2 + 29b62ea
Raw File
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