Ejemplo 1: como hacer cout en Python
What is your name? <user input data here>
Ejemplo 2: como hacer cout en Python
print raw_input('What is your name? ')
Ejemplo 3: como imprimir en python
#a string, to indicate it is a string you can use ("") or ('')
print("hello world")
#a integer
print(19)
# a float:
print(4.5)
Ejemplo 4: como imprimir en python
'''
print()inside the parentheses put a single colon or double colon
'''
# example like this
print("this how you use print statement")
# or like this
print('other way to print in python')
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)