I used to use Python, Numpy, Pandas, and other libraries in practice, I knew that my knowledge was missing, so This time I decided to review from 1 with Progate.
I know the advanced knowledge of the progate learning course It is really knowledge of toothlessness, such as missing some parts of the beginner's class.
I will make a note of the missing part. (Updated from time to time)
dictionary
script01.py
#Chara = {'King':'Takato', 'Wonderer':'Riichiro', 'Bishop':'Madoka', 'Traitor':'Toranosuke', 'Philosopher':'Syuya'}
#Make long dictionaries easier to read
Chara = {'King':'Takato',
'Wonderer':'Riichiro',
'Bishop':'Madoka',
'Traitor':'Toranosuke',
'Philosopher':'Shuya'}
print('The target of capture is the following 5 people.')
for target in Chara :
print (Chara[target])
#Add dictionary element
Chara['Journalist'] = 'Nakaba'
print(Chara)
print('From Extime released in 2015' + Chara['Journalist'] + 'Has been added to the target of capture.')
** Skip loop processing continue **
script02.py
numbers = [1, 2, 3, 4, 5, 6]
for number in numbers :
if number % 3 == 0 ; #When the variable number is a multiple of 3
continue #Skip loop processing
print (number)
** About my career **
Have you been programming for 1 to 6 years? ?? When I was working as an OA office worker You can write a batch script of Windows to automate the work, I used to organize data for numerical calculations in Excel VBA. I needed a shell to run a math program Put Cygwin in Windows and write shellcode Rewrite the fortran code. (At that time, I didn't know the difference between 77 and 90!) Since I was dealing with the database on the software I know how SQL works, but I don't know the code. It's a really strange career.
Recommended Posts