swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: e2f27fa8426acf8b1b8f780aebebbec96ba9e764 authored by Dominik Kern on 10 August 2021, 11:29:58 UTC
clang format
Tip revision: e2f27fa
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