【授業事例】パソコン教室 スマホ・タブレット教室 プログラミング教室 キュリオステーション鶴見校

  • 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]
日本IBM出身
ホームページビルダー元開発責任者
鎌田裕二
責任指導
横浜市鶴見区のパソコン教室⇒

お問い合わせ TEL:045-567-8393
【開校15年 総受講生 1,800名以上】
小学生から90才まで通学実績有

【授業事例】パソコン教室 スマホ・タブレット教室 プログラミング教室 キュリオステーション鶴見校

  • Windowsメール Niftyメールの設定、Microsoftアカウントメールアドレスの変更
  • GIMPを使ってデジタルアートに挑戦
  • パイソン プログラミング リスト append メソッド
>>> square = []
>>> square
[]
>>> square.append(1)
>>> square
[1]
>>> square.append(4)
>>> square
[1, 4]
>>> square.append(9)
>>> square
[1, 4, 9]
>>> square.append(16)
>>> square
[1, 4, 9, 16]
>>>
  • パイソン プログラミング PEP 8 — Style Guide for Python Code
    docstringの使い方
    camelcase と snakecase
  • VBA プログラミング Exit For の使い方
  • Facebook アカウント登録とプロフィール編集(スマホ教室)
  • 小学生スクラッチ プログラミング (Sound Editor)の使い方
  • Sony Xperia PC Companion ダウンロードとインストール
  • Excel VBA プログラミング(個人レッスン)
    Outlookからメール送信の自動化
    ThisWorkbook.Worksheets(1).Cells(i, j).Value = wb.Worksheets(1).Cells(i, j).Value
  • スマホから写真データの回収(パソコン経由でUSBメモリーへ保存)
  • PDF編集Webサービス『LightPDF』の使い方
  • Adobe Acrobat Pro DC 無料体験申込
  • Excel VBA プログラミング
    Cells(Rows.Count, 11).End(xlUp).Row
  • Lenovo アンドロイド タブレット
    Google Play ストア から Microsoft Excelのインストールと基本操作
  • 不要迷惑ソフトのアンインストール(Simple Driver Updater, Simple Registry Cleaner, Malware Protector, Driver Updater)
  • ViPlex Express インストール
  • Gmailの使い方(受信したメールにラべルを付ける、スレッドをすべて選択)
  • 国内格安航空券さくらトラベル 格安航空券の検索
  • ディスク占有率の高速可視化ツール「WizTree」のインストールと使い方
  • オフィス(ワード、エクセル、アウトルック)起動できない問題の解決
    「アプリケーションを正しく起動できませんでした 0x00000142
    クイック修復にて解決
  • ウイルスバスター サイレントモードの開始(有効化)
  • Excelシートを別ブックへ書き出し
  • VBA プログラミング Webスクレイピング 個人指導
    ie.navigate "https://example.com/" & targeturl
    Do
        DoEvents
    Loop Until ie.readyState = READYSTATE_COMPLETE
    Set doc = ie.document
  • Windows 拡張デスクトップの使い方
    マウスポインター設定(ポインターの軌跡を表示する、Ctrlキーを押すとポインターの位置を表示する)
  • スマホ教室 ファミペイ アプリの使い方
  • スマホ教室 スシロー予約
  • au スマートパス解約
  • Google Chrome 保存したパスワードの確認
  • パイソン プログラミング入門 関数 ラムダ式
>>> def square(x):
...     return x ** 2
...
>>> print(square(44))
1936
>>>
>>> sfunc = lambda x: x ** 2
>>>
>>> print(sfunc(32))
1024
>>>
>>> for s in map(lambda i: "NO:" + str(i), range(1, 11)):
...     print(s, end="\t")
...
NO:1    NO:2    NO:3    NO:4    NO:5    NO:6    NO:7    NO:8    NO:9    NO:10   >>>
>>> for x in filter(lambda i: i % 3 == 0, range(1, 31)):
...     print(x, end=" ")
...
3 6 9 12 15 18 21 24 27 30 >>>
  • パイソン プログラミング入門 関数 ラムダ式 sort()メソッド
>>> pairs = [(2, 'down'), (1, 'up'), (4, 'charm')]
>>> print(pairs)
[(2, 'down'), (1, 'up'), (4, 'charm')]
>>> pairs.sort()
>>> print(pairs)
[(1, 'up'), (2, 'down'), (4, 'charm')]
>>> pairs.sort(key=lambda x: x[1])
>>> print(pairs)
[(4, 'charm'), (2, 'down'), (1, 'up')]
>>> pairs.sort(key=lambda x: x[1], reverse=True)
>>> print(pairs)
[(1, 'up'), (2, 'down'), (4, 'charm')]
>>>
  • パイソン プログラミング入門 関数の中での関数定義
>>> def outer(a, b):
...     def inner(c, d):
...             return c * d
...     return inner(a, b)
...
>>> outer(5, 6)
30
>>> inner(5, 6)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'inner' is not defined
>>>
  • パイソン プログラミング入門 関数 クロージャ nonlocal変数
>>> default = circle()
>>> precise = circle(pi = 3.1414926535)
>>>
>>> type(default)
<class 'function'>
>>> type(precise)
<class 'function'>
>>>
>>> print(default(2))
12.56
>>> print(precise(2))
12.565970614
>>>
>>> def makecounter():
...     n = 0
...     def count():
...             nonlocal n
...             n += 1
...             return n
...     return count
...
>>> counter = makecounter()
>>> counter()
1
>>> counter()
2
>>> counter()
3
日本IBM出身
ホームページビルダー元開発責任者
鎌田裕二
責任指導
横浜市鶴見区のパソコン教室⇒

お問い合わせ TEL:045-567-8393
【開校15年 総受講生 1,800名以上】
小学生から90才まで通学実績有

【授業事例】パソコン教室 スマホ・タブレット教室 プログラミング教室 キュリオステーション鶴見校

  • Visual Studio Code 1.56.2へ更新
  • Excel VBA 個人指導 (Webスクレイピング)
    MicrosoftHTML Object Library, Microsoft Internet Controls 参照設定
    getElementsByClassName、getElementsByName
  • エクセルVBA ブレークポイントの設定・解除
  • フィットネスジム会員登録(スマホ操作)
  • PowerDirect 動画編集 不透明度の設定
  • QGIS
    フリーでオープンソースの地理情報システム https://qgis.org/ja/site/
  • その問題、デジタル地図が解決します ―はじめてのGIS – 2021/3/19
  • 令和3年 経済センサス インターネット回答 https://www.e-survey.go.jp/
  • スマホ 路線案内の使い方
  • Microsoft Jigsaw インストールと使い方(小学生教室 マウス基本操作のため)
  • KF94マスク 5/10/20/50枚セット 個別包装 4層構造 立体構造 男女兼用 アマゾン通販
  • au ガラケーからスマホへの機種変更(回線開通と試験)、電話帳、写真の移行
  • windows 10 スタートアップフォルダ shell:startup
  • スマホ基本操作
    ホーム画面、アプリ、アイコンとは?
    アイコンの整理
    インストールとアンインストールとは?
  • Excel から PDF形式で出力
  • http://www.kagakueizo.org/ 科学映像館
  • 楽天トラベルの使い方
  • Gmail アカウントの作成
  • Microsoft Edgeのインストール(Windows8.1)
  • PowerPoint 図として保存
  • PCのリフレッシュ
  • iPad 初期設定(icloud.comメールアドレスの作成)、スリープ/スリープ解除ボタンの使い方
  • サイボウズの使い方
  • 食べログ 営業時間の編集
  • JRA-VAL アプリのインストールと使い方
  • Windows ワードパッド ページ設定
  • 三井住友銀行アプリのインストールとパスワードカード有効化
  • スマホ教室 横浜市営バス、臨港バス 時刻表の見方
  • ワクチン接種予約方法(横浜市 新型コロナウイルスのワクチン接種予約について
  • 迷惑メール対策

【Amazon】注文状況が変更されました
amazonアカウントの一時停止のお知らせ
【Amazon】お届け先設定を補足を確認する
ヨドバシ・ドット・コム:カード情報更新のお知らせ
しいAmazonアカウントを確認します
【重要なお知らせ】カード情報更新のお知らせ
お宅のETCサービスを一時停止しました
【三井住友カード】ANA VISA プリペイドカードお知らせ
Amazonアカウントを利用制限しています
重要】<三井住友カード>ご利用確認のお願い
[配送管理センター] ※ご不在の為センターへ持ち帰りました
【重要】カード情報更新のお知らせ

  • ヤフオク 新規登録
  • パイソン プログラミング入門 range(), iterable, break, continue
>>> for i in range(20, 80, 8):
...     print(i)
...
20
28
36
44
52
60
68
76

>>> for x in range(9):
...     if x == 3:
...             break
...     print(x)
...
0
1
2

>>> for x in range(10):
...     if x == 5:
...             continue
...     print(x)
...
0
1
2
3
4
6
7
8
9
  • パイソン プログラミング入門 while文
>>> a, b = 0, 1
>>> while b < 30:
...     print(b)
...     a, b = b, a + b
...
1
1
2
3
5
8
13
21

import random
alpha = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
char = random.choice(alpha)
while True:
    val = input('>>>?')
    if char == val:
        print('OK')
        break
    else:
        print('NG')
  • パイソン プログラミング入門 ファイルの読み込み
>>> with open('sample.txt', 'r') as f:
...     for line in f:
...             print(line.strip())
...
testtest
test
testtest
test
testtest
test
  • パイソン プログラミング入門 ファイル すべての読み込み
>>> with open('sample.txt', 'r') as f:
...     l = f.readlines()
...
>>> print(l)
['testtest\n', 'test\n', 'testtest\n', 'test\n', 'testtest\n', 'test']
  • パイソン プログラミング入門 ファイル バイナリファイル
>>> with open('test.dat', 'wb') as f:
...     f.write(b'456789')
...
6
>>> with open('test.dat', 'rb') as f:
...     data = f.read(6)
...     print(data)
...
b'456789'

>>> f = open('test.dat', 'rb')
>>> f.tell()
0
>>> f.read(2)
b'45'
>>> f.tell()
2
>>> f.seek(4)
4
>>> f.tell()
4
>>> f.read(2)
b'89'
>>> f.close()
  • パイソン プログラミング入門 ファイル pickle
>>> import pickle
>>> num = 200
>>> with open('sample.pkl', 'wb') as f:
...     pickle.dump(num, f)
...
>>> f
<_io.BufferedWriter name='sample.pkl'>
>>> with open('sample.pkl', 'r') as f:
...     num = pickle.load(f)
...     print(num)
...
>>> with open('sample.pkl', 'rb') as f:
...     load_num = pickle.load(f)
...     print(load_num)
...
200
>>>
  • パイソン プログラミング入門 関数
>>> def my_func():
...     pass
...
>>> my_func()
>>> my_func
<function my_func at 0x0000024A598FB048>
>>> # 変数を加える
>>> def my_func(x):
...     pass
...
>>> my_func() # 変数なしで呼び出す
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: my_func() missing 1 required positional argument: 'x'
>>> my_func(1)
>>>
>>> # 関数 値を返す
>>> def my_func(x):
...     return x
...
>>> my_func(1)
1
>>> my_func('test')
'test'
>>>
  • パイソン プログラミング入門 関数 リストの変更
>>> def my_func(x):
...     x.append(1)
...
>>> my_list = [0, 1, 2, 3, 4]
>>> my_func(my_list)
>>> my_list
[0, 1, 2, 3, 4, 1]
>>>
  • パイソン プログラミング入門 関数 フェボナッチ数列
>>> def fib(n):
...     a, b = 0, 1
...     while a < n:
...             print(a, end=' ')
...             a, b = b, a+b
...
>>> fib(5000)
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181
  • パイソン プログラミング入門 関数 キーワード引数
>>> def house_for_rent(bedrooms, walk_min, house_type, rent_yen):
...     return {"bedrooms":bedrooms, 'walk_min':walk_min, 'house_type':house_type, 'rent_yen':rent_yen}
...
>>> house_for_rent(2, 15, 'apartment', 60)
{'bedrooms': 2, 'walk_min': 15, 'house_type': 'apartment', 'rent_yen': 60}
>>> house_for_rent(2, 'mansion', 2, 100)
{'bedrooms': 2, 'walk_min': 'mansion', 'house_type': 2, 'rent_yen': 100}
>>> house_for_rent(rent_yen=100, walk_min=2, bedrooms=2, house_type='mansion')
{'bedrooms': 2, 'walk_min': 2, 'house_type': 'mansion', 'rent_yen': 100}
>>>
  • パイソン プログラミング入門 関数 引数デフォルト値
>>> def house_for_rent(bedrooms, walk_min, house_type, rent_yen):
>>> house_for_rent()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: house_for_rent() missing 4 required positional arguments: 'bedrooms', 'walk_min', 'house_type', and 'rent_yen'
>>> def house_for_rent(bedrooms=2, walk_min=6, house_type='apart', rent_yen='50'):
...     return {"bedrooms":bedrooms, 'walk_min':walk_min, 'house_type':house_type, 'rent_yen':rent_yen}
...
>>> house_for_rent()
{'bedrooms': 2, 'walk_min': 6, 'house_type': 'apart', 'rent_yen': '50'}
>>>
  • パイソン プログラミング入門 関数 位置引数 タプル、辞書
>>> def show_args(*args):
...     print('positional args:', args)
...     return args
...
>>> show_args(4, 5, 6, 7, 8, 'AA')
positional args: (4, 5, 6, 7, 8, 'AA')
(4, 5, 6, 7, 8, 'AA')
>>> def shows_kwargs(**kwargs):
...     print('key args:', kwargs)
...     return kwargs
...
>>> shows_kwargs(pasta='pasta', drink='coke', main_dish='beef', n_customers = 3)
key args: {'pasta': 'pasta', 'drink': 'coke', 'main_dish': 'beef', 'n_customers': 3}
{'pasta': 'pasta', 'drink': 'coke', 'main_dish': 'beef', 'n_customers': 3}
>>>
  • パイソン プログラミング入門 関数 グローバル変数 ローカル変数
animal = 'cat'
print("animal:", animal)

def my_func():
        animal = 'dog'
        print("animal in my_func", animal)

my_func()
print("animal after my_func:", animal)
  • パイソン プログラミング入門 関数 変数に代入
>>> sum([1, 2, 3, 4])
10
>>> sum(range(10))
45
>>> add_all = sum
>>> add_all([1,2,3,4,5])
15
>>> add_all(range(11))
55
>>>
  • パイソン プログラミング入門 関数 引数に関数
>>> def say_hello():
...     print('hello')
...
>>> say_hello()
hello
>>>
>>> def run_and_func(func):
...     for i in range(3):
...             func()
...
>>> run_and_func(say_hello)
hello
hello
hello
>>>
  • パイソン プログラミング入門 関数 戻り値に関数
>>> def multi_func(number):
...     if number == 0:
...             print('min', end=" ")
...             return min
...     if number == 1:
...             print('max', end=" ")
...             return max
...     else:
...             print('sum' , end=" ")
...             return sum
...
>>> num_list = [1, 2, 3, 4]
>>> for i in [0, 1, 2]:
...     print(multi_func(i)(num_list))
...
min 1
max 4
sum 10
>>>
  • 楽天 新規登録
日本IBM出身
ホームページビルダー元開発責任者
鎌田裕二
責任指導
横浜市鶴見区のパソコン教室⇒

お問い合わせ TEL:045-567-8393
【開校15年 総受講生 1,800名以上】
小学生から90才まで通学実績有

【授業事例】パソコン教室スマホ・タブレット教室 プログラミング教室 キュリオステーション鶴見校

  • Windows 10 S モード オフ(Google Chromeインストールのため)
  • d払いアプリ インストールと使い方、買い物
    dショッピング|過去のご注文一覧|ドコモの通販サイト
  • スマホからパソコンへ GPXファイル(GPS eXchange Format)のコピー、地図へのマッピング(カシミール3D)
  • パイソン プログラミング入門
    トリプルクォート(三重引用符)の使い方
    AttributeError: module(object) ‘xxx’ has no attribute ‘yyy’
    def __init__(self, ….)
  • パイソン プログラミング入門
    Anaconda のインストール
  • パイソン TABキー (Anaconda Power Shell)
C:\ProgramData\Anaconda3\Lib\site-packages\pyreadline\rlmain.py

class BaseReadline(object):
    def __init__(self):
        self.allow_ctrl_c = False
        self.ctrl_c_tap_time_interval = 0.3

        self.debug = False
        self.bell_style = 'none'
        self.mark = -1
        self.console=MockConsole()
        self.disable_readline = True # 2021-04-16 17:38:22 ka
  • パイソン プログラミング入門 データ型
>>> type(3)
<class 'int'>
>>> type(3.1)
<class 'float'>
>>> c = 5
>>> type(c)
<class 'int'>
>>> type(c) is int
True
>>> type(c) is float
False
>>> isinstance(c, int)
True
>>>
  • パイソン プログラミング入門 リスト操作
>>> my_list
[-1, 1, 102, 103, 4, 5, 6, 7, 8]
>>> my_list = [0, 1, 2, 3, 4, 5, 6, 7, 8]
>>> my_list
[0, 1, 2, 3, 4, 5, 6, 7, 8]
>>> my_list[2:5] = [102, 103]
>>> my_list
[0, 1, 102, 103, 5, 6, 7, 8]
>>> my_list[1:1] = [555, 666, 777]
>>> my_list
[0, 555, 666, 777, 1, 102, 103, 5, 6, 7, 8]
>>> my_list[2:8] = [102, 103]
>>> my_list
[0, 555, 102, 103, 6, 7, 8]
>>> my_list[2:5] = []
>>> my_list
[0, 555, 7, 8]
>>>
  • パイソン プログラミング入門
    bin(), hex(), oct() 関数
    str(), int(), float() 関数
    ord() 関数 (ordinal)
    formatメソッド
    フォーマット済み文字列リテラル
    リスト append(), extend(), sort(), reverse()
    ブール型(真偽値)
  • 比較演算子
>>> x = 3
>>> print(x > 1)
True
>>> print(x < 1)
False
>>> 1 == 3
False
>>> 1 != 3
True
>>> 1 < 3
True
>>> 1 <= 3
True
>>> 1 > 3
False
>>> 3 >= 3
True
>>>
  • パイソン プログラミング入門 ブール演算子
>>> x = True
>>> y = True
>>> x and y
True
>>> y = False
>>> x and y
False
>>> x or y
True
>>> not x
False
>>> not y
True
>>>
  • パイソン プログラミング入門 in 演算子
>>> mylist = [1, 2, 3, 4, 5, 6]
>>> 2 in mylist
True
>>> 7 in mylist
False
>>> mystr = 'This is a pen.'
>>> 'pen' in mystr
True
>>> 'sun' in mystr
False
>>> 'p' in mystr
True
>>> 'sun' not in mystr
True
>>>
  • パイソン プログラミング入門 is 演算子
>>> x = None
>>> x is None
True
>>> x is not None
False
>>> abc is None
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'abc' is not defined
>>> None is None
True
>>>
  • パイソン プログラミング入門 エラー
    IndexError: string index out of range
    TypeError: ‘type’ object is not subscriptable
    TypeError: ‘str’ object does not support item assignment
    TypeError: ‘<‘ not supported between instances of ‘int’ and ‘str’
  • Windows 10 Shell
    findstrコマンドの使い方 (findstr -s)
日本IBM出身
ホームページビルダー元開発責任者
鎌田裕二
責任指導
横浜市鶴見区のパソコン教室⇒

お問い合わせ TEL:045-567-8393
【開校15年 総受講生 1,800名以上】
小学生から90才まで通学実績有

【授業事例】パソコン教室 スマホ・タブレット教室 プログラミング教室 キュリオステーション鶴見校

  • Twitterの使い方 from:username since:2011-3-11 until:2011-3-12
  • Python Standard Library
  • Among Us ローカルマルチプレイヤーのプレイ方法
  • Outlook.com メールアドレスの追加
  • アマゾン アカウントの作成
  • Python from the Very Beginning John Whitington サンプルプログラム
  • Apple ID のパスワードを忘れた場合 パスワードのリセット
  • ソニー Music Center for PC ダウンロードとインストール
  • Windows 10 初期設定、ウイルスバスターライセンス更新、Excelライセンス認証、Microsoft Edgeの使い方
  • GIMPのダウンロードとインストール、言語切り替え
  • ノートパソコン購入相談(SSDサイズ、画面サイズ、重量など)https://www.pc-koubou.jp/
  • IMSLP: Free Sheet Music PDF Download
  • パイソン 組み込み関数 reversed()
  • note ユーザー登録と使い方
  • money forward クラウド確定申告の使い方
  • Python プログラミング math ライブラリ
sqrt
log
log10
sin
cos
tan
atan
ceil
float
  • パイソン入門
       >>>    1 == 1
       True
       >>> 1 != 1
       False
       >>> 1 != 0
       True              
range(start, stop, step)
  • カカオトーク パスワード回復
  • Power Automate Desktopのインストール(Windows10)
  • Becky! Internet Mail のメール補完場所
  • GitHubからPythonサンプルプログラムのダウンロード
  • Elan Smart Pad 設定変更
  • 「固定キー機能を有効にします」をオフ
  • cmos battery failureとは
  • 64 ビットバージョンの英語版パックをインストールOffice

PROTECTED VIEW Be careful – files from the Internet can contain viruses. Unless you need to edit, it’s sage to stay in Protected View.

保護ビュー 注意-インターネットから入手したファイルは、ウイルスに感染している可能性があります。編集する必要がなければ、保護ビューのままにしておくことをお勧めします。

  • Yahoo!プレミアムの登録解除
日本IBM出身
ホームページビルダー元開発責任者
鎌田裕二
責任指導
横浜市鶴見区のパソコン教室⇒

お問い合わせ TEL:045-567-8393
【開校15年 総受講生 1,800名以上】
小学生から90才まで通学実績有

【授業事例】パソコン教室・スマホ・タブレット教室キュリオステーション鶴見校

  • Python 3.7 Anacondaのダウンロードとインストール(Windows版)、「Pythonの基本のきほん」7ステップで即効マスターに沿ってのプログラミング実習
    https://docs.python.org/3.7/tutorial/ The Python Tutorial,

    Using the Python Interpreter

    An Informal Introduction to Python

  • パイソン入門
  • AnacondaにRStudioのインストール
  • R-3.6.0-win.exeのダウンロードとインストール
  • moraアカウントの新規作成 (音楽ダウンロード・音楽配信サイト mora ~WALKMAN&公式ミュージックストア~)クレジットカード登録、サインインと音楽ダウンロード
  • Apple ID ロック解除、Windows版 iTunesのダウンロードとインストール
  • R setwd, getwd, listfiles, library(psych)関数の使い方
  • 会社経営者向け パワーポイント資料作成個人レッスン (スクリーンショット、トリミング)
  • Twitter アトミ式フォロワー管理機の使い方
  • ワード テキストボックス フォームフィールドの使い方
  • 音楽の整理(iPod, iTunes, iPhone)
  • Gmailラベルの管理、メールの整理。Internet ExplorerからGoogle Chromeへの移行
  • R パッケージ(psych)の追加
  • R Studio (Windows版)のダウンロードとインストール
  • Windows10での単語登録
  • Excel ルビ(ふりがな) ひらがな・カタカナの指定
  • QRコード リーダー  for iPhoneのインストール(Apple Storeより)
  • iOS 10.3.3 へiPhoneの更新(ソフトウエアアップデート)
  • GPSロガー Android アプリのインストール(スマホ)
  • Yahoo!地図の使い方
  • [Corel Digital Studio] 写真や動画を使用してスライドショーを作成する (Fujitsuノートパソコン)
  • OneSafe PC Cleanerの削除
  • 筆ぐるめ26のインストール
  • 今昔マップ on the web の使い方
  • QGIS ダウンロードと試用評価
    基盤地図情報ダウンロード(国土地理院)
    GML=Geography Markup Languageについて
  • 統計分析フリーソフト R スクリプトの保存、入力データーCSVファイルの作成(Excel)
  • iPhone YouTubeへの動画のアップロード、Twitterへの共有
  • アメブロ開設 スマホAmebaアプリでYouTube動画埋め込み
日本IBM出身
ホームページビルダー元開発責任者
鎌田裕二
責任指導
横浜市鶴見区のパソコン教室⇒

お問い合わせ TEL:045-567-8393

【開校15年 総受講生 1,800名以上】
小学生から90才まで通学実績有