From 0db699017f0a9205d4c55d3f38ae1292c55234c3 Mon Sep 17 00:00:00 2001 From: Mike Gevaert Date: Mon, 11 Sep 2023 15:46:41 +0200 Subject: [PATCH] fix python2 style print in example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b8cf26f9..53df28ea 100644 --- a/README.md +++ b/README.md @@ -226,8 +226,8 @@ def main(): for trace_results in traces_results: # trace_result is a dictionary, with as keys the requested features for feature_name, feature_values in trace_results.items(): - print "Feature %s has the following values: %s" % \ - (feature_name, ', '.join([str(x) for x in feature_values])) + print("Feature %s has the following values: %s" % + (feature_name, ', '.join([str(x) for x in feature_values]))) if __name__ == '__main__':