diff --git a/test.py b/test.py new file mode 100644 index 0000000000000000000000000000000000000000..b6109f6e9d336be3f3a21ed50fbd951ca254dbc8 --- /dev/null +++ b/test.py @@ -0,0 +1,9 @@ +#!/bin/evn python3 + +a="python" +b="c" +c="java" +d="php" +print("a={0},{1},{2}, {3}".format(a,b,c,d)) +print("a={},{},{},{}".format(a,b,c,d)) +print("a=%s" % a)