Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- javascript
- MS-SQL
- tensorflow
- 라즈베리파이
- PyQt
- Excel
- PyQt5
- PER
- ubuntu
- flutter
- 날짜
- python
- 리눅스
- 함수
- Unity
- MySQL
- swift
- urllib
- sqlite
- mssql
- IOS
- GIT
- 다이어트
- 맛집
- ASP
- Linux
- 유니티
- port
- pandas
- node.js
Archives
목록2024/10/23 (2)
아미(아름다운미소)
int 아닐때 0 반환
result = int(value) if isinstance(value, int) or (isinstance(value, str) and value.isdigit()) else 0
랭귀지/python
2024. 10. 23. 15:57
Flutter 변수를 공통으로 사용하려면?
final String apiKey = "my_api_key"; // API 키 를 공통변수로 사용하려면lib/├── config/│ └── globals.dart├── main.dart└── other_files.dart // lib/globals.dartlibrary my_project.globals;final String apiKey = "fc1e3ad82010475381daf9846e627fdd";// lib/main.dartimport 'package:flutter/material.dart';import 'globals.dart' as globals;void main() { runApp(MyApp());}class MyApp extends StatelessWidget { @override..
랭귀지/Flutter(플러터)
2024. 10. 23. 03:29