Skip to content

Commit

Permalink
#00 - python
Browse files Browse the repository at this point in the history
  • Loading branch information
perla-zg committed Jul 1, 2024
1 parent 1cb09d2 commit 11b123a
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#https://www.python.org/

#comentario de una linea

"""
comentario
de varias
líneas
"""

variable = 1
CONSTANTE = 2

string = "cadena de texto"
int = 1
float = 2.1
bool = (False, True)
complex = 1 + 3j
bytes = b'\x00\x01\x02\x03'
bytearray = bytearray(b'\x00\x01\x02\x03')
nonetype = None

print("¡Hola, Python!")

0 comments on commit 11b123a

Please sign in to comment.