- AviUtl動画編集の使い方
- パイソン プログラミング教室
パイソンインタラクティブシェルの使い方 - TopBuzzVideoの使い方
- パイソン プログラミング教室
import pandas
import yfinance
import streamlit
try: ~ exception: - Excel 2019/2016/2013 マクロ/VBA_Office365差分 補足資料
Windows(“第6章(完成).xlsm:2”).Activate - Excel VBA If ~ Then, Select ~ Case, For ~ Next, Do ~ Loop
Range Sort メソッドの使い方
Format関数の使い方 - Pythonゲームプログラミング入門(日経ソフトウェア特別付録)
Pygame Zeroのインストール - GitHub Desktop (Windows) のインストール
- ワード、アウトルックが起動しなくなった問題の解決(microsoft office desktop apps 修復)
- Excel マクロ、VBA アクセス 短期集中講座
- パイソンプログラミング教室
udemy オンライン教材 補習授業
pip install google-api-python-client
YouTube API Keyの使い方
Computer Vision (Microsoft Azure) - パイソン入門 プログラミング教室 streamlit
import streamlit as st
import numpy as np
import pandas as pd
st.title('はじめての streamlit')
st.write("今週からはじまります。")
st.write(pd.DataFrame({
'first column': [1, 2, 3, 4],
'second column': [10, 20, 30, 40]
}))
chart_data = pd.DataFrame(
np.random.randn(20, 3),
columns=['a', 'b', 'c'])
st.line_chart(chart_data)
map_data = pd.DataFrame(
np.random.randn(1000, 2) / [50, 50] + [37.76, -122.4],
columns=['lat', 'lon'])
st.map(map_data)
- numpy.random.randn 正規分布の乱数
- GitHub入門 (Repository, Branch, Commit, Pull Request, Merge Pull Request)
- パイソン入門 プログラミング教室 リスト生成(内包表記)
>>> i = [1, 2, 3, 4, 5, 6]
>>> ii = [x**2 for x in i]
>>> ii
[1, 4, 9, 16, 25, 36]
- パイソン入門 プログラミング教室 for ネスト
>>> m = [i * j for i in range(1, 10) for j in range(1, 10)]
>>> m
[1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 4, 6, 8, 10, 12, 14, 16, 18, 3, 6, 9, 12, 15, 18, 21, 24, 27, 4, 8, 12, 16, 20, 24, 28, 32, 36, 5, 10, 15, 20, 25, 30, 35, 40, 45, 6, 12, 18, 24, 30, 36, 42, 48, 54, 7, 14, 21, 28, 35, 42, 49, 56, 63, 8, 16, 24, 32, 40, 48, 56, 64, 72, 9, 18, 27, 36, 45, 54, 63, 72, 81]
>>>
- パイソン入門 プログラミング教室 リスト要素の削除、リスト全体削除
>>> f = [1, 2, 3]
>>> del f[0]
>>> f
[2, 3]
>>> del f
>>> f
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'f' is not defined
>>>
- パイソン入門 プログラミング教室 getsizeof
>>> a = [x for x in range(1000)]
>>> import sys
>>> sys.getsizeof(a)
9024
- パイソン入門 プログラミング教室
copyモジュール copy.copyメソッドとcopy.deepcopyメソッド - Windowsバックアップ
- Gmailアーカイブの使い方
- Googleカレンダーの使い方
- LINEパスワード変更
- Excel VBA 時間外個人レッスン データ処理(実務使用)マクロ作成
- Excel VBA InputBoxで日付入力チェック(IsDate関数の使い方)
- パイソン入門 プログラミング教室
リスト extend メソッド
>>> square = [1,4,9,16,25]
>>> square
[1, 4, 9, 16, 25]
>>> square2 = [10, 20]
>>> square.extend(square2)
>>> square
[1, 4, 9, 16, 25, 10, 20]
- パイソン入門 プログラミング教室
リスト insert メソッド、remove メソッド、popメソッド、clearメソッド、indexメソッド、sortメソッド、reverseメソッド、copyメソッド
>>> square
[1, 4, 9, 16, 25, 10, 20]
>>> square.insert(3, 8)
>>> square
[1, 4, 9, 8, 16, 25, 10, 20]
>>> square.remove(16)
>>> square
[1, 4, 9, 8, 25, 10, 20]
>>> square.pop(1)
4
>>> square
[1, 9, 8, 25, 10, 20]
>>> square.clear()
>>> square
[]
>>> square = [1, 4, 9, 16, 25, 36]
>>> square.index(9)
2
>>>
>>> square = [1, 5, 8, 3, 11, 6]
>>> square.sort()
>>> square
[1, 3, 5, 6, 8, 11]
>>> square.reverse()
>>> square
[11, 8, 6, 5, 3, 1]
>>> square2 = square.copy()
>>> square2
[11, 8, 6, 5, 3, 1]
ホームページビルダー元開発責任者
鎌田裕二責任指導
横浜市鶴見区のパソコン教室⇒
お問い合わせ TEL:045-567-8393