“impreso Python” Código de respuesta

impreso Python

print("if you are new in python, do not give up!")
Faithful Fowl

impreso Python

#this is how to print
print("I am getting printed")
Clear Caracal

impreso 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

impreso Python

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

impreso Python

#making a print statement:
print('your text')
# you should now see'your text' in the terminal
Tame Tapir

impreso Python

print('hello world') #print can write a string a number or a variable

#for example you can 'print' a number
print(1) #if you want to print a number you can print it without '' or ""

#we can print a variable
string = 'hi'
print(string) #if you want to print a variable you can print it without '' or ""
Histreike

impreso Python

#FR
str_one = "Hello, "
str_two = "world !"

print(str_one + str_two)
ADRIXYN

Respuestas similares a “impreso Python”

Preguntas similares a “impreso Python”

Más respuestas relacionadas con “impreso Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código