Skip to content

Commit

Permalink
Merge pull request #7617 from Tallahashee/patch-1
Browse files Browse the repository at this point in the history
Create Tallahashee.py
  • Loading branch information
Roswell468 authored Jan 13, 2025
2 parents 47d59be + 0fb9e61 commit 2b4e01f
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# https://python.org

# Esto es un comentario en una linea

"""
Esto es un
comentario en
varias lineas
"""
my_variable = "Mi variable"
my_variable = "Nuevo valor de mi variable"

MY_CONSTANT = "Mi constante" # por conveccion

my_int = 1
my_float = 2.5
my_bool = True
my_bool = False
my_string = "Mi cadena de texto"
my_other_string" = 'Mi otra cadena de texto'

print("¡Hola, Python!")

print(type(my_int))
print(type(my_float))
print(type(my_bool))
print(type(my_string))

0 comments on commit 2b4e01f

Please # to comment.