La introducción a Python se ha tratado en este artículo . Ahora, comencemos con el aprendizaje de Python.
Ejecutar su primer código en Python
Los programas de Python no se compilan, sino que se interpretan. Ahora, pasemos a escribir un código Python y ejecutarlo. Asegúrese de que Python esté instalado en el sistema en el que está trabajando. Si no está instalado, descárguelo desde aquí . Usaremos python 2.7.
Python3
print ("Hello World") # Notice that NO semi-colon is to be used
Python3
a = 3 A = 4 print (a) print (A)
Python3
a = 2 b = 3 c = a + b print (c) d = a * b print (d)
Python3
a = 3 b = 9 if b % a == 0 : print ("b is divisible by a") elif b + 1 == 10: print ("Increment in b produces 10") else: print ("You are in else statement")
Python3
# Function for checking the divisibility # Notice the indentation after function declaration # and if and else statements def checkDivisibility(a, b): if a % b == 0 : print ("a is divisible by b") else: print ("a is not divisible by b") #Driver program to test the above function checkDivisibility(4, 2)
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA