“print () функция в Python” Ответ

Печать в Python

print("the sentence you want to print")
Expensive Emu

Печать в Pythin

# it is simple
print("Your Text")
OnePunch

Печать Python

# 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)
LYXAIM

Печать Python

x=str("Hello ")
y=str("world ")
print(x+y)
print(y+x)
z=int(40)
print("z="y)
Zealous Zebra

Печать в 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="") 
Nishant Tiwari

print () функция в Python

>>> print("Hello World!")
Outrageous Ostrich

Ответы похожие на “print () функция в Python”

Вопросы похожие на “print () функция в Python”

Больше похожих ответов на “print () функция в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования