Comment faire une déclaration d'impression dans Python
print("print")
Wicked Wallaby
print("print")
print('Welcome to 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="")
print("vaibhav mishra) #python3