name_list = ['nick', 'egon', 'jason']
x = name_list[0]
y = name_list[1]
z = name_list[2]
print(f'x:{x}, y:{y}, z:{z}')
name = input('name>>>')
age = input('age>>>')
height = input('height>>>')
print('My name is %s,My age is %s,My height is %s' % (name, age, height))
name = input('name>>>')
age = input('age>>>')
height = input('height>>>')
print('My name is {},My age is {},My height is {}'.format(name, age, height))
name = input('name>>>')
age = input('age>>>')
height = input('height>>>')
print(f'My name is {name},My age is {age},My height is {height}')
print(f'My name is {name},My age is {int(age)+1},My height is {int(height)10}')
print(f'My name is {name},My age is {int(age)+1:.6f},My height is {int(height)10}')
print(f'My name is {"kk"},My age is {int(age)+1:.6f},My height is {int(height)*10}')
hobby_list=['piao','handsome','music','football','eat','play','game','sleep']
hobby1,hobby2,hobby3,hobby4,hobby5,hobby6,hobby7,hobby8=hobby_list
print(hobby1)
print(hobby2)
hobby_list=['piao','handsome','music','football','eat','play','game','sleep']
,hobby1,,,hobby2,*=hobby_list
print(hobby1)
print(hobby2)
print(*_)