google GoogleAppsScript( GAS )でスプレッドシートを取得、値を取得、書き込みしてみよう! スプレッドシートを作成 今回は「ID」「FirstName」「LastName」の3項目を5列ぶん用意いたしました! gasのファイルを作成(作成方法は2種類ある) スプレッドシートから作成する(スプレッドシート... 2020.05.31 googleGoogleAppsScript
Flutter / Dart Flutter TextField()がキーボードに隠れてしまう。 Scaffoldに 「resizeToAvoidBottomInset: true」を設定 @override Widget build(BuildContext context) { return Scaffold( ... 2020.05.31 Flutter / Dart
AppSheet AppSheet で IDにUniqueなKeyをセット!! NumberでKeyをセット スプレッドシートで作成 ColumnsでinitialValueをセット ColumnsにあるINITIAL VALUEにUNIQUEID()と記入。 確認 ... 2020.04.15 AppSheet
Flutter / Dart Dart Listで使えるメソッド集 dartPadで動きを確認して見てください! method for() var people = ; for(var person in people){ print(person); }; or ... 2020.04.09 Flutter / Dart
Flutter / Dart Flutter BoxDecoration でグラデーション class MyWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Container( ... 2020.04.08 Flutter / Dart
colaboratory Python Tutorial Excelから必要な値を取得!Colaboratory & GoogleDrive 1日3分で学ぶPythonの 1 〜 11 まで完了してたらできるはず。。 設定 商品名と売り上げ金額が入ったシートから、700,000円以上の売り上げの商品と金額を取り出し、新しいシートに書き込む。 Excelファイル... 2020.03.29 colaboratoryPython
colaboratory 1日3分で学ぶ Python入門⑪ Excelファイルの操作 GoogleDrive Colaboratory を使用して、Excelファイルを操作します。 必要なモジュールをインポート import openpyxl Driveにアップロードしたファイルを読み込み Driv... 2020.03.29 colaboratoryPython
colaboratory 1日3分で学ぶ Python入門⑩ while文 で繰り返す 0 から10まで出力してみる count = 0 while count <= 10: print(count) count += 1 # 出力結果 # 0 1 2 3 4 5 6 ... 2020.03.28 colaboratoryPython
colaboratory 1日3分で学ぶ Python入門⑨ if文 <真偽値(ブーリアン型)と in, not> 真偽値 真偽値とは「真理値」のこと。用語の中身としては「そうだよ!(真:true)」か「違うよ!(偽:false)」のどちらかが入ってますよ!な値のことです。「分かりそう」で「分からない」でも「分かった」気になれるIT用語辞典さんよ... 2020.03.27 colaboratoryPython
colaboratory 1日3分で学ぶ Python入門⑧ if文 (条件分岐)と比較演算子 比較演算子 == a == b aとbが等しい != a != b aとbは等しくない > a > b aはbより大きい >= a >= b aはb以上 < a < b bはaより大きい <= a <= b ... 2020.03.27 colaboratoryPython