Hi, I am a beginner in Python programming and I want to know how to print with the C format in Python with a list of parameters such as :
agrs = [1,2,3,"hello world"]
string = "This is a test %d, %d, %d, %s"
The Output should be:
This is a test 1, 2, 3, hello world