This commit is contained in:
Eray Aydın 2015-03-26 15:23:45 +02:00
parent e34c67290a
commit 4d74369df3

View File

@ -533,32 +533,32 @@ Insan.grunt() # => "*grunt*"
#################################################### ####################################################
## 6. Modules ## 6. Moduller
#################################################### ####################################################
# You can import modules # Modülleri içe aktarabilirsiniz
import math import math
print(math.sqrt(16)) # => 4 print(math.sqrt(16)) # => 4
# You can get specific functions from a module # Modülden belirli bir fonksiyonları alabilirsiniz
from math import ceil, floor from math import ceil, floor
print(ceil(3.7)) # => 4.0 print(ceil(3.7)) # => 4.0
print(floor(3.7)) # => 3.0 print(floor(3.7)) # => 3.0
# You can import all functions from a module. # Modüldeki tüm fonksiyonları içe aktarabilirsiniz
# Warning: this is not recommended # Dikkat: bunu yapmanızı önermem.
from math import * from math import *
# You can shorten module names # Modül isimlerini değiştirebilirsiniz.
# Not: Modül ismini kısaltmanız çok daha iyi olacaktır
import math as m import math as m
math.sqrt(16) == m.sqrt(16) # => True math.sqrt(16) == m.sqrt(16) # => True
# Python modules are just ordinary python files. You # Python modulleri aslında birer python dosyalarıdır.
# can write your own, and import them. The name of the # İsterseniz siz de yazabilir ve içe aktarabilirsiniz Modulün
# module is the same as the name of the file. # ismi ile dosyanın ismi aynı olacaktır.
# You can find out which functions and attributes # Moduldeki fonksiyon ve değerleri öğrenebilirsiniz.
# defines a module.
import math import math
dir(math) dir(math)