Recent Posts
Archives
Tags
- Contrastive Domain Discrepancy
- Computer Vision
- CVPR2021
- Python
- Consistency Regularization
- CodeUp6015
- ICLR2021
- Attention
- CodeUp6011
- CodeUp6016
- Domain Adaptation
- Feature Augmentation
- Maximum Mean Discrepancy
- CodeUp
- 비전공자를 위한 HTML/CSS
- ViT
- ComputerVision
- 백준
- Class Aware Sampling
- Segmentation Map
- 코드업
- CodeUp6013
- CodeUp6014
- CodeUp6012
- Pseudo Label
- Semi Supervised Learning
- Baekjoon
- transformer
- 이것이 취업을 위한 코딩테스트다
- Vision Transformer
Link
IT 정리용 블로그!
CodeUp [기초-출력] 6004,6005,6006,6007,6008 본문
- [6004]
Q : 'Hello'를 출력하라
A : print(" 'Hello' "). 혹은 print(' \'Hello\' ') - [6005]
Q : "Hello"를 출력하라
A : print(' "Hello" ') 혹은 print(" \"Hello\" ") - [6006]
Q : "!@#$%^&*()' 를 출력하라
A : print(' "!@#$%^&*()\' ') - [6007]
Q : "C:\Download\'hello'.py"를 출력하라
A : print("\"C:\\Download\\'hello'.py\""). \도 출력하려면 \\로 쓰는 것이 좋다. - [6008]
Q : print("Hello\nWorld")를 출력하라
A : print('print("Hello\\nWorld")'). \n에서 \를 출력하려면 print안에서 \\로 써준다.
'CodeUp' 카테고리의 다른 글
CodeUp [기초-비트시프트연산] 6046,6047 (0) | 2021.12.29 |
---|---|
CodeUp [기초-산술연산] 6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6043,6044,6045 (0) | 2021.12.29 |
CodeUp [기초-출력변환] 6027,6028 (0) | 2021.12.29 |
CodeUp [기초-값변환] 6025,6026,6029,6030,6031,6042 (0) | 2021.09.08 |
CodeUp [기초-입출력] 6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024 (0) | 2021.09.08 |
Comments