본문 바로가기

Programming86

Python 분리된 키와 값 목록에서 사전(dict)을 어떻게 만들 수 있나요?, How can I make a dictionary (dict) from separate lists of keys and values? 질문 이것들을 결합하고 싶습니다: keys = ['name', 'age', 'food'] values = ['Monty', 42, 'spam'] 하나의 사전으로: {'name': 'Monty', 'age': 42, 'food': 'spam'} 답변 이렇게: keys = ['a', 'b', 'c'] values = [1, 2, 3] dictionary = dict(zip(keys, values)) print(dictionary) # {'a': 1, 'b': 2, 'c': 3} 보세요 :-) 짝을 이루는 dict 생성자와 zip 함수는 놀랍도록 유용합니다. 2023. 5. 19.
Flutter 타임스탬프 변환하기, Converting timestamp 질문 나는 이 문제에 대한 해결책을 찾을 수 없었다. 나는 파이어베이스에서 데이터를 가져오고 그 중 하나의 필드는 다음과 같은 타임스탬프이다. -> 1522129071. 어떻게 날짜로 변환할 수 있을까? Swift 예제(작동함) : func readTimestamp(timestamp: Int) { let now = Date() let dateFormatter = DateFormatter() let date = Date(timeIntervalSince1970: Double(timestamp)) let components = Set([.second, .minute, .hour, .day, .weekOfMonth]) let diff = Calendar.current.dateComponents(component.. 2023. 5. 18.
Flutter에서 메인 화면의 배경색을 어떻게 설정하나요?, How do I set the background color of my main screen in Flutter? 질문 저는 Flutter를 배우고 있습니다. 매우 기초부터 시작하고 있습니다. MaterialApp을 사용하지 않고 전체 화면의 배경색을 설정하는 좋은 방법이 무엇인가요? 지금까지 작성한 코드는 다음과 같습니다: import 'package:flutter/material.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return new Center(child: new Text("Hello, World!")); } } 제가 가진 몇 가지 질.. 2023. 5. 17.
Flutter 플러터: 일부 조건에 따라 목록 필터링하기, Flutter: filter list as per some condition 질문 나는 영화 목록을 가지고 있다. 애니메이션과 비애니메이션 영화를 모두 포함한다. 애니메이션인지 아닌지를 식별하기 위해 isAnimated라는 하나의 플래그가 있다. 나는 애니메이션 영화만 보여주고 싶다. 어떻게 할 수 있을까? 답변 toList()는 결과를 구체화하는 데 필요합니다. _AnimatedMovies = AllMovies.where((i) => i.isAnimated).toList(); 2023. 5. 15.