一、データ型とフォーマット出力、基本演算子、プロセス制御
9296 ワード
一、データ型
数値タイプ:整数intは、等級、年齢、×××号、学号、id号
#浮動小数点型float#身長、体重、給与を表す
#文字列str:引用符(単一引用符、二重引用符、三重引用符)に含まれる一連の文字#名前、住所、記述的なデータを表すために使用されます.
#文字列の結合:+、*
#リスト:[]のカッコ内で複数の値をカンマで区切って定義します.値は任意のタイプ#で複数の値を格納できます.複数の趣味、複数の人名
#ディクショナリ:定義{}内はカンマで区切られ、各要素はkey:valueの形式であり、valueは任意のタイプであってもよいが、keyは必ず可変タイプである
#ブールタイプbool:True,False#用途:判断
数値タイプ:整数intは、等級、年齢、×××号、学号、id号
level=10
print(type(level),id(level),level)
1993698608 10
#浮動小数点型float#身長、体重、給与を表す
salary=3.1
height=1.80
print(id(salary),type(height),salary)
2996881593040 3.1
#文字列str:引用符(単一引用符、二重引用符、三重引用符)に含まれる一連の文字#名前、住所、記述的なデータを表すために使用されます.
name='egon'
sex="woman"
des="""hobby:man,play,read"""
print(name,sex,des,type(name),type(sex),type(des))
egon woman hobby:man,play,read
#文字列の結合:+、*
# s1='hello '
# s2="word"
# print(s1+s2)
hello word
# s3="""s_jun """
# print(s3*3)
s_jun s_jun s_jun
#リスト:[]のカッコ内で複数の値をカンマで区切って定義します.値は任意のタイプ#で複数の値を格納できます.複数の趣味、複数の人名
stu_names=['egon','hobby','age']
print(id(stu_names),type(stu_names),stu_names,stu_names[1])
2389078272136 ['egon', 'hobby', 'age'] hobby
user_info=['egon',18,['read','music','play','dancing']]
print(user_info[2][1])
music
#ディクショナリ:定義{}内はカンマで区切られ、各要素はkey:valueの形式であり、valueは任意のタイプであってもよいが、keyは必ず可変タイプである
user_info={'name':'egon','age':18,'hobbies':['read','music','dancing','play']}
print(type(user_info),user_info['name'],id(user_info),user_info['hobbies'][3])
egon 2025116757160 play
info={
'name':'egon',
'hobbies':['play','sleep'],
'company_info':{
'name':'Oldboy',
'type':'education',
'emp_num':40,
}
}
print(info['company_info']['name'])
Oldboy
students=[
{'name':'alex','age':38,'hobbies':['play','sleep']},
{'name':'egon','age':18,'hobbies':['read','sleep']},
{'name':'wupeiqi','age':58,'hobbies':['music','read','sleep']},
]
print(students[1]['hobbies'][0])
students={
'alex':{
'age':84,
'hobbies':['play','sleep']
},
'egon':{
'age':18,
'hobbies':['play',]
}
}
print(students['egon']['age'])
18
#ブールタイプbool:True,False#用途:判断
age_of_oldboy=18
inp_age=input('your age: ')
inp_age=int(inp_age)
if inp_age > age_of_oldboy:
print(' ')
elif inp_age
# !!!: ,
# False
# 0
# None
# :'',[],{}
if '':
print('0===>')
if []:
print('[]')
if {}:
print('{}')
if None:
print('0===>None')
if 0:
print('00')
りはすべて if ['',]:
print('1====>')
if {'':'',}:
print('2===?')
if True:
print('3===>?')
# タイプと タイプ# :idが わらない 、 を できます.
×××: x=1
print(id(x),type(x),x)
x=2
print(id(x),type(x),x)
-----------------------------------
1993698320 1
1993698352 2
リスト:x=['a','b','c']
print(id(x),type(x),x)
x[2]=10
print(x)
print(id(x),type(x),x)
---------------------------------
2467516409224 ['a', 'b', 'c']
['a', 'b', 10]
2467516409224 ['a', 'b', 10]
:dic={'x':1,'y':2}
print(id(dic),type(dic),dic)
dic['x']=111111111
print(id(dic),type(dic),dic)
# タイプ: 、 # タイプ:リスト、 #dic={[1,2,3]:'a'}
、フォーマット name="s_jun"
age=20
print('my name is %s my age is %s' %(name,age))
my name is s_jun my age is 20
print('my name is %s my age is %s'%('egon',18))
print('my name is %s my age is %d'%('egon',18))
x='my name is %s my age is %d' %('egon',18)
print(x)
-----------------------------------
my name is egon my age is 18
my name is egon my age is 18
my name is egon my age is 18
name="s_jun"
msg="""
------------ info of %s -----------
Name : %s
------------- end -----------------
"""%(name,name)
print(msg)
------------------------------------------------------------------------
------------ info of s_jun -----------
Name : s_jun
------------- end -----------------
age=20
A=' %s '%(age)
print(A)
-------------------------------------
20
、 print(10/3)
print(10//3)
print(10%3)
print(3**3)
-----------------------
3.3333333333333335
3
1
27
インクリメンタルわりあてage=18
age+=2 # age=age+2
print(age)
age-=10 #age=age-10
print(age)
-----------------------
20
10
# #and: ,andは の2つの を するために いられ,2つの で された がいずれもTrueの にのみand の がTrueとなる.print(1 > 2 and 3 > 4)
print(2 > 1 and 3 > 4)
print(True and True and True and False)
-------------------------------------------
False
False
False
#or: または、 の として の があるprint(True or False)
print(True or False and False)
print((True or False) and False)
print(not 1 > 2)
------------------------------------
True
True
False
True
、プロセス のifsex='female'
age=20
is_beutiful=True
if sex == 'female' and age > 18 and age
sex='female'
age=20
is_beutiful=True
if sex == 'female' and age > 18 and age
age_of_oldboy=18
inp_age=input('your age: ')
inp_age=int(inp_age)
if inp_age > age_of_oldboy:
print(' ')
elif inp_age
username='s_jun'
password='123'
inp_name=input('name>>: ')
inp_pwd=input('password>>: ')
if inp_name == username and inp_pwd == password:
print('login successfull')
else:
print('user or password not vaild')
sex='female'
age=20
is_beutiful=True
is_successful=False
if sex == 'female' and age > 18 and age
'''
: >=90, :
>=80 <90, :
>=70 <80, :
:
'''
score=89
if score >= 90:
print(' ')
elif score >= 80:
print(' ')
elif score >= 70:
print(' ')
else:
print(' ')
-----------------------
、プロセス のwhile
while: ループimport time
count=1
while count ',count)
time.sleep(0.1)
count=1
while count <= 3:
print('=====>',count)
count+=1
#break: ループから び すage_of_oldboy=18
while 1:
inp_age=input('your age: ')
inp_age=int(inp_age)
if inp_age > age_of_oldboy:
print(' ')
elif inp_age
age_of_oldboy=18
count=0
while count age_of_oldboy:
print(' ')
elif inp_age
age_of_oldboy=18
count=0
while True:
if count == 3:
print('try too many times')
break
inp_age=input('your age: ')
inp_age=int(inp_age)
if inp_age > age_of_oldboy:
print(' ')
elif inp_age
#continue: ,
count=1
while count
while True:
print('=========>')
continue
print('=========>')
print('=========>')
print('=========>')
while True:
inp_name=input('name>>: ')
inp_pwd=input('password>>: ')
if inp_name == "s_jun" and inp_pwd == "123":
print('login successfull')
while True:
cmd=input('cmd>>>: ')
if cmd == 'quit':
break
print('%s ...' %cmd)
break
else:
print('user or password not vaild')
tag=True
while tag:
inp_name=input('name>>: ')
inp_pwd=input('password>>: ')
if inp_name == "s_jun" and inp_pwd == "123":
print('login successfull')
while tag:
cmd=input('cmd>>>: ')
if cmd == 'quit':
tag=False
continue
# break
print('%s ...' %cmd)
else:
print('user or password not vaild')