diff --git a/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Irenetitor.py b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Irenetitor.py new file mode 100644 index 0000000000..a35680559e --- /dev/null +++ b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Irenetitor.py @@ -0,0 +1,27 @@ +#1. +# The language I've selected is Python and you can find all the information about on it's official website: https://www.python.org/ + +#2. +#this is a one line comment + +""" +this is a multiline comment +""" +''' +this is another approach for a multiline comment +''' + +#3. +my_variable = "this is my first variable" + + #There is no built-in way to declare constants in Python + +#4. +x = 10 # int +y = 3.14 # float +z = "Hi" # str +flag = True # or False bool +c = 2 + 3j # complex + +#5. +print("Hello, Python!") \ No newline at end of file