Skip to content

Commit

Permalink
Merge pull request mouredev#4723 from perla-zg/perla-zg
Browse files Browse the repository at this point in the history
#00 - python
  • Loading branch information
Roswell468 authored Jul 5, 2024
2 parents 7079879 + 11b123a commit 683da82
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 683da82

Please sign in to comment.