일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 플러터
- page
- Flutter
- AnimationController
- 함수
- 닷넷
- 마우이
- 오류
- .NET
- Firebase
- 리엑트
- Maui
- Binding
- listview
- 애니메이션
- Animation
- 깃허브
- 자바스크립트
- db
- React JS
- MS-SQL
- 파이어베이스
- 바인딩
- spring boot
- JavaScript
- MVVM
- GitHub
- typescript
- HTML
- MSSQL
Archives
- Today
- Total
목록내장 함수 (1)
개발노트
[Python] 요약 정리
문자형 mixed_quotes = "She said, \"Hello, World!\" and it's amazing." mixed_quotes = 'She said, "Hello, World!" and it\'s amazing.' mixed_quotes = """She said, "Hello, World!" and it's amazing.""" # 문자열 이어붙이기 (+ 연산자) greeting = "Hello, " name = "John" message = greeting + name print(message) # 출력: "Hello, John" # 문자열 반복하기 (* 연산자) word = "Python " repeated_word = word * 3 print(repeated_word) # 출력: ..
알고리즘, PS
2023. 7. 24. 16:14