“Cómo imprimir hola en python” Código de respuesta

Cómo imprimir hola en python

#python2 
print 'hello'
#python3
print('hello')
Pinksheep

Cómo imprimir Hello World en Python

# Don't forget to add a quotation mark
print("Hello World!")
Red Dragon

Impresión Hello World en Python

print('hello world!') #prints hello world!
Loki_py

Python Printing Hello World

#The real way :)
print("Hello World!")
Distinct Dogfish

Cómo imprimir Hello World en Python

print("Hello World") #prints Hello World in the console
Obedient Okapi

Respuestas similares a “Cómo imprimir hola en python”

Preguntas similares a “Cómo imprimir hola en python”

Más respuestas relacionadas con “Cómo imprimir hola en python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código