imprimer en python
print("the sentence you want to print")
Expensive Emu
print("the sentence you want to print")
# it is simple
print("Your Text")
# You can use ' or "
# Print a text string in JavaScript
print('My text')
# Print a variable in JavaScript
my_variable = str('Text')
print(my_variable)
# Print a number in JavaScript
print(123)
x=str("Hello ")
y=str("world ")
print(x+y)
print(y+x)
z=int(40)
print("z="y)
# 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("Hello World!")