0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Udemy Python3入門+応用】  68. Import文とAS

Last updated at Posted at 2020-10-14

※この記事はUdemyの
現役シリコンバレーエンジニアが教えるPython3入門+応用+アメリカのシリコンバレー流コードスタイル
の講座を受講した上での、自分用の授業ノートです。
講師の酒井潤さんから許可をいただいた上で公開しています。

##■import文とas
####◆import
こんな風にディレクトリとファイルを用意する。

lesson_package
 ├ __init__.py
 └ utils.py
lesson.py
utils.py
def say_twice(word):
    return (word + '!') * 2
lesson.py
import lesson_package.utils

r = lesson_package.utils.say_twice('hello')
print(r)
result
hello!hello!

import lesson_package.utils のようにフルパスで書いてあげることで、他のファイルにある関数を読み込むことができる。

####◆fromとimport

import lesson_package.utils

は、

from lesson_package import utils

という風に書いてもOK。その際は、

lesson.py
from lesson_package import utils

r = utils.say_twice('hello')
print(r)

という風に使うことができる。

####◆as

lesson.py
from lesson_package import utils as ut

r = ut.say_twice('hello')
print(r)

asで文字列を指定してあげることで、好きな文字列で呼び出すことができる。

0
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?