今日パイソンを初めて勉強しました。

 

1. Download(ダウンロード)

 

 

2. Coding practice(実習)

#(Comment)My first Python! 2nd Mar 2021
print("Hello, Python!") #print "Hello, Python!"
print(10*20) # 10 X 20 = ?
print("Hi~" *5) #print "Hi~" 5times

a = input("Please input data:")
print("The data you input is:", a)
print("The data you input *6 =", a * 6)#can concatenate(+)string to string(not sting to number "int"),possible on JAVA(?)
#The data you input is sting
print("================================")
b = input("Please input data:")
print("The data you input is:", b)
print("The data you input *6 =", int(b) * 6)
#The data you input is int(number)

c = 10 # declaration and initialization
print("c:", c) #Load
print("c * 10 =", c * 10)#case-sensitive

c= 20 # reinitialization
print("c:", c) #Load
print("c * 10 =", c * 10)

#There's room(memory) on the computer to store data for a while.
#Utilizing this space is called VARIABLE

#declaration(선언) : 변수의 이름표를 지정하는 것
#initialization(초기화) : 선언된 변수에 데이터를 저장하는 것 a "= 10"
#Load(호출) : 변수 안에 저장된 데이터를 꺼내오는 것
 

3.Conclusion(結了)

面白かったです。

日本語を早く学んで日本語でも注釈を書きたいです。

足りないところがありましたら修正お願い致します。

ありがとうございます。