LoginSignup
1
1

More than 3 years have passed since last update.

Python tutorial

Last updated at Posted at 2020-05-25

variables

https://docs.python.org/3/library/ 参照


a = 1
b = "Text"
c = None
d = True
# list
days = ["Sat", "Sun"]

print("Sat" in days) # 出力結果 True
print("Mon" in days) # 出力結果 False

list is sequence and mutable # days = ["Sat", "Sun"]
tupple is immutable # days = ("Sat", "Sun")
dict me={ "name":"zomggang",
"age" : "secret"}

Flask

host=0.0.0.0
means all IPV4 address で0.0.0.0にアクセスすることになったらlocal hostの全てのhostにアクセスできるということ

1
1
0

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
1
1