# Python CodeRecipe|fromの使い方

Home Python Keywords

# fromの例1

Import only the time section from the datetime module, and print 
  the time as if it was 15:00:

    from datetime import timex = time(hour=15)print(x)

# fromの定義及び使い方

from関数は、 モジュールから指定されたセクション。

Related Pages The import keyword. The as keyword. Read more about modules in our Python Modules Tutorial.

Home Python Keywords