forked from mouredev/roadmap-retos-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhectorio23.py
33 lines (25 loc) · 798 Bytes
/
hectorio23.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Autor: Héctor Adán
# GitHub: https://github.com/hectorio23
# Si quieres saber más información sobre python visita su web oficial: https://www.python.org/
# Comentario de una sola linea, para ello se usa el simbolo << # >>
"""
This is a
multi-line comment
"""
'''
This is also a
multi-line comment
'''
# Creando una variable, no es necesarios especificar el tipo de dato
my_variable = "Hello"
# Creando una constante, en python no existen como tal, si no que por convencion estas
# se escriben con letras mayúsculas
MY_CONSTANT = 10
GRAVITY_VALUE = 9.7881 # .., etc
# Variables que guardan diferentes tipos de datos
string_variable = "Hello, Python!"
integer_variable = 42
float_variable = 3.14
boolean_variable = True
# Imprimiendo un mensage en el terminal
print("¡Hola, Python!")