“Impresión en Python” Código de respuesta

impresión de python

x = 10
y = 5
print(x)			# 10
print("x is ",x)	# x is 10
print(x,y)			# 10 5
print("sum of", x, "and", y, "is", x+y)   # sum of 10 and 5 is 15
mCar = "A"
print(mCar * y) 	# AAAAA
VasteMonde

Cómo usar la función de impresión en Python

print("What you would like to print :D")

#And then it will print in my case "What you would like to print :D" in the output
Jeppe Pro

Imprimir en Python

print("this is a print function, what ever you write inside this , it will display in output ")
Sanket s.s

impreso Python

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

impresión de python

print('Hello World of Python!!')
Pow

Impresión en Python

#you first need to have an event to fire a piece of code.
#with that i use the if statement

can_run = True

if can_run:
    print("ok i,m printing")
    #you can print varibles(strings) too

the_4_words = "ok i,m printing varibles"

if can_run:
    print(the_4_words)
dl.idiot..

Respuestas similares a “Impresión en Python”

Preguntas similares a “Impresión en Python”

Más respuestas relacionadas con “Impresión en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código