Definición de herramientas CAD
Def herramientas CASE
ADOBE FIREWORKS LEMGUAJE C++
SOLID WORKS DIF VER VISUAL BASIC CON LICENCIA
BLENDER DISEÑADO EN LEN C, LENGUAJE C++, PYTHON
PHOTOSHOP PASCAL Y LENGUAJE C++
AUTOCAD.-Visual LISP , ObjectARX LISP
UNITY- LENGUAJE C++
GIM.- LENG C
--------BAJAR PYTHON
SITIO DONDE PODEMOS BAJAR PYTHON
WWW.Python.org
http://softvaina.blogspot.mx/2008/09/pythong-ver-215.html
CREAR LA VARIABLE DE ENTORNO
- Seleccione Inicio y Panel de control. ...
- Haga clic en Variables de entorno. ...
- En la ventana Editar la variable del sistema (o Nueva variable del sistema), debe especificar el valor de la variable de entorno PATH . ...
- Vuelva a abrir la ventana del indicador de comandos y ejecute el código de java.
MySQL\MySQL Server 5.7\bin\;C:\Python27
Ejemplo de el PATH:
C:\Program Files (x86)\Intel\iCLS Client\;C:\Program
Files\Intel\iCLS
Client\;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program
Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL
SDK\2.0\bin\x64;C:\Program Files\Intel\Intel(R) Management Engine
Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine
Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine
Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine
Components\IPT;C:\Program Files\Diskeeper Corporation\ExpressCache\;C:\Program
Files\MySQL\MySQL Server 5.7\bin\;C:\Python27\;
COMO CORRER UN PROGRAMA EN PYTHON
C:\Users\ACER>cd..
C:\Users>cd..
C:\>python c:\python27\ejercicio1.py
1 3 5 7 9 11 13 15 17 19 21 23 25
C:\>python c:\python27\ejercicio2.py
40 42 44 46 48 50 52 54 56 58 60
DONDE HACEMOS EL CODIGO BLOC DE NOTAS
https://notepad-plus-plus.org/
BUSCAR UNA LIGA DE PROGRAMAS EN PYTHON
http://es.wikihow.com/comenzar-a-programar-en-Python
mas ejemplos:
http://aprendeenlinea.udea.edu.co/lms/ocw/mod/page/view.php?id=211
Liga de Rafael Abrajan
http://www.comoprogramar.org/ejemplos-de-python-codigo/
video de python para linux, linea, triangulo, circulo
https://www.youtube.com/watch?v=G84gesHaY1o
Programa con uso de IF ( Sentencias condicionales)
https://www.youtube.com/watch?v=hLqKvB7tGWk
Realizar los siguientes Ejercicios en Python:
#encoding: utf-8
edad = 30
if edad >= 0 and edad < 18:
print "eres un niño"
elif edad >= 18 and edad < 27:
print "Eres un joven"
elif edad >= 27 and edad < 60:
print "Eres un adulto"
else:
print "Eres de la tercera edad"
-----------------
Uso de Bucles
edad = 0
while edad <= 20:
print "tienes : " + str(edad)
edad = edad + 1
------------
edad = 0
while edad <= 20:
if edad == 15:
edad = edad + 1
continue
print "tienes : " + str(edad)
edad = edad + 1
---------------------------------
#uso de libreria datetime
import datetime
print (datetime.datetime.now())
import random
valor = random.randint(0,10)
lista = ["uno", "dos", 23,"cuatro"]
valor = random.choice(lista)
print(valor)
****************
# otro ejemplo de uso de librería Random
import random
valor = random.randint(0,10)
print(valor)
**********************
import Random
lista = ["uno", "dos", 23,"cuatro"]
print lista
random.shuffle(lista)
print(lista)
***************
# uso de librería sys
import sys
import time
for i in range(100):
time.sleep(0.5)
sys.stdout.write("Texto")
*************
# otro ejemplo de uso de librería sys
import sys
import time
for i in range(100):
time.sleep(0.5)
sys.stdout.write("\r%d %%" % i)
*****************
Lenguajes de Programación mejor pagados:
https://www.youtube.com/watch?v=l7k5lqRWpoY
IDE para python:
https://aptana-studio.uptodown.com/windows
Ver serie de vídeos en python....
https://www.youtube.com/watch?v=CjmzDHMHxwU
Liga importante de graficos
http://gmendezm.blogspot.mx/2012/12/tutorial-tkinter-python-gui.html
edad = 0
while edad <= 20:
print "tienes : " + str(edad)
edad = edad + 1
------------
edad = 0
while edad <= 20:
if edad == 15:
edad = edad + 1
continue
print "tienes : " + str(edad)
edad = edad + 1
---------------------------------
#uso de libreria datetime
import datetime
print (datetime.datetime.now())
**************
#uso de librería random
valor = random.randint(0,10)
lista = ["uno", "dos", 23,"cuatro"]
valor = random.choice(lista)
print(valor)
****************
# otro ejemplo de uso de librería Random
import random
valor = random.randint(0,10)
print(valor)
**********************
import Random
lista = ["uno", "dos", 23,"cuatro"]
print lista
random.shuffle(lista)
print(lista)
***************
# uso de librería sys
import sys
import time
for i in range(100):
time.sleep(0.5)
sys.stdout.write("Texto")
*************
# otro ejemplo de uso de librería sys
import sys
import time
for i in range(100):
time.sleep(0.5)
sys.stdout.write("\r%d %%" % i)
*****************
""" programa que hace una funcion y con parametros usando la palabra reserbada def """ def mi_funcion(num1,num2): print num1 + num2 mi_funcion(3,4) #paso de argumentos o parametros a la funcion
***********************
class Humano: def __init__(self): print "Soy un nuevo objeto" def hablar(self, mensaje): print mensaje pedro = Humano() raul = Humano() pedro.hablar("Hola") pedro.hablar('hola') raul.hablar('Hola,Pedro')
*******************************
Lenguajes de Programación mejor pagados:
https://www.youtube.com/watch?v=l7k5lqRWpoY
IDE para python:
https://aptana-studio.uptodown.com/windows
Ver serie de vídeos en python....
https://www.youtube.com/watch?v=CjmzDHMHxwU
Liga importante de graficos
http://gmendezm.blogspot.mx/2012/12/tutorial-tkinter-python-gui.html
Liga importante de Armando Moreal gpo A
http://gmendezm.blogspot.mx/2012/12/tutorial-tkinter-python-gui.html
Ligas importantes de manuales de python presenta:
García Caloca Alma Iyari
http://graficacionaliy.blogspot.mx/
Manual de Tkinter:
http://pharalax.com/blog/python-desarrollo-de-interfaces-graficas-con-tkinter-labelsbuttonsentrys/
# programa que hace un Panel
from Tkinter import *
ventana = Frame(height=500, width = 400)
ventana.pack(padx=20,pady =20)
ventana.mainloop()
Blog con ejemplos de Python:
http://www.pythondiario.com/2016/03/capitulo-1-creamos-una-ventana.html
No hay comentarios:
Publicar un comentario