Answers for "how to use the print function in python"

1

how to use the print function in python

print("What you would like to print :D")

#And then it will print in my case "What you would like to print :D" in the output
Posted by: Guest on March-23-2022
1

how to print in python

print("what you want to print")
Posted by: Guest on June-11-2021
1

print in python

# hello world
print("hello world")

#usage of sep()
print(10,1,2001,sep="/")

#usage of end()
l = ["d","x","4","i","o","t"]
for i in l:
    print(i,end="")
Posted by: Guest on December-05-2020
0

print in python

print("wathever you want!")
Posted by: Guest on February-05-2021

Code answers related to "how to use the print function in python"

Python Answers by Framework

Browse Popular Code Answers by Language