About the Tutorial



Download 2,85 Mb.
Pdf ko'rish
bet147/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   143   144   145   146   147   148   149   150   ...   234
Bog'liq
python3 tutorial 060821094426

The
 
from...import *
 
Statement: 
It is also possible to import all the names from a module into the current namespace by 
using the following import statement- 
from modname import * 
This provides an easy way to import all the items from a module into the current 
namespace; however, this statement should be used sparingly. 
Executing Modules as Scripts 
Within a module, the module’s name (as a string) is available as the value of the global 
variable __name__. The code in the module will be executed, just as if you imported it, 
but with the __name__ set to "__main__".


Python 3 
210 
Add this code at the end of your module- 
#!/usr/bin/python3 
# Fibonacci numbers module 
def fib(n): # return Fibonacci series up to n 
result = [] 
a, b = 0, 1 
while b < n: 
result.append(b) 
a, b = b, a+b 
return result 
if __name__ == "__main__": 
f=fib(100) 
print(f) 
When you run the above code, the following output will be displayed. 
[1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
Locating Modules 
When you import a module, the Python interpreter searches for the module in the following 
sequences- 

The current directory. 

If the module is not found, Python then searches each directory in the shell variable 
PYTHONPATH. 

If all else fails, Python checks the default path. On UNIX, this default path is 
normally /usr/local/lib/python3/. 
The module search path is stored in the system module sys as the 
sys.path 
variable. The 
sys.path variable contains the current directory, PYTHONPATH, and the installation-
dependent default. 
The
 
PYTHONPATH

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   143   144   145   146   147   148   149   150   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish