Question #190

What is the output of the code snippet below?
print(1, 2, 3, sep="/")

With the print() function, the parameter sep stands for separator. It indicates how the elements of the print() function will be separated when printed out. (w3schools.com/python/ref_func_print.asp)


Comment on Disqus:

Question difficulty: 🔵🔵🔵🔵🔵