728x90
반응형

MacBook Pro late 2013 초기화 설치
인터넷을 통해 설치할 수 있다. 유선 또는 WiFi를 통해 설치가 가능하다.

1. 이 기기에 설치할 수 있는 최신 macOS를 설치할 때

option + command + R 을 동시에 누른다.

2. 가장 최근에 설치된 macOS 중에 최신 버전으로 설치할 때

command + R 을 동시에 누른다.

반응형
728x90
반응형

Python 3.12.2 (tags/v3.12.2:6abddd9, Feb  6 2024, 21:26:36) [MSC v.1937 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.


print("그냥 따라하기")
그냥 따라하기

print(10)
10


print(10, 20, 30)
10 20 30


print(10 20 30)
SyntaxError: invalid syntax. Perhaps you forgot a comma?

print(2.7)
2.7


print(2.5, 7.4, 90.56)
2.5 7.4 90.56


print(9, 5, 0.3)
9 5 0.3

pritn(" 정수를 출력" )
Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    pritn(" 정수를 출력" )
NameError: name 'pritn' is not defined. Did you mean: 'print'?


print(" 우리 ")
 우리 


10
10


20
20


10, 20, 30
(10, 20, 30)


100 200 300
SyntaxError: invalid syntax


type(10)
<class 'int'>


type(2000)
<class 'int'>


type(50), type(70), type(100)
(<class 'int'>, <class 'int'>, <class 'int'>)


type(10), type(20)
(<class 'int'>, <class 'int'>)

type( 3, 5, 7)
Traceback (most recent call last):
  File "<pyshell#24>", line 1, in <module>
    type( 3, 5, 7)
TypeError: type.__new__() argument 1 must be str, not int

print(" 실수를 출력합니다. ")
 실수를 출력합니다. 
2.5
2.5
type(3.5)
<class 'float'>

print( 2.6, 3.2, 56.2)
2.6 3.2 56.2

print( 2, 54, 21)
2 54 21

 

print(5.6)
5.6


"문자열을 출력합니다"
'문자열을 출력합니다'

서울
Traceback (most recent call last):
  File "<pyshell#48>", line 1, in <module>
    서울
NameError: name '서울' is not defined


"서울"
'서울'

print(" \' \" 같아요 ")
 ' " 같아요 


print"서울", "부산", "광주")
SyntaxError: unmatched ')'

print("서울", "부산", "광주")
서울 부산 광주


"울산", 여수", "제주"_
SyntaxError: unterminated string literal (detected at line 1)


"울산", 여수", "제주"
SyntaxError: unterminated string literal (detected at line 1)


"울산", "여수", "제주"
('울산', '여수', '제주')


type("대한민국")
<class 'str'>


type("gkasdf")
<class 'str'>


type('korea')
<class 'str'>


type('대한')
<class 'str'>

반응형
728x90
반응형

괜찮은 컴퓨터 게이스


반응형
728x90
반응형

루미온 벤치마크 최소 추천 사양

CPU: i7 6700 4-Core

CPU: RYZEN 5 2600 6-Core

GPU: GTX 1080 8GB

RAM: 32GB (16GB로도 작동은 문제 없다)

파워서플라이: 마이크로닉스 클래식II 600W

케이스: darkFlash DLM200

시스템 메모리 16 GB로 실행하는데 전혀 문제가 없다.
그러나 32 GB로 올리는 것을 추천한다.

darkFlash DLM200


마이크로닉스 클래식II 600W

반응형
728x90
반응형

괜찮은 컴퓨터 케이스 특징 기록
- 외부 라사 없는
- 케이스를 쉽게 벗김
- 쿨러가 많아
- 상단에 버튼과 포트 있음 USB3.0, Type-C USB3.1
- SSD 2개를 달 수 있음
- 바닥에 Sata 하드 장착 가능

https://m.danawa.com/product/preview.html?code=17840969

darkFlash DLM200 MESH PERFORMANCE 강화유리 (블랙) : 다나와 가격비교

컴퓨터/노트북/조립PC>PC주요부품>케이스, 요약정보 : PC케이스(M-ATX) / 미니타워 / 파워미포함 / Micro-ATX / Mini-ITX / 쿨링팬: 총4개 / 전면 패널 타입: 메쉬 / 측면 개폐 방식: 스윙도어 / 측면: 강화유리

m.danawa.com


출처 : 다나와

반응형
728x90
반응형

그래픽 전원 케이블 가능한 파워


https://prod.danawa.com/api/mobile/info/productInfoDesc.php?productCode=1928673

 

 

 

 

 

 

반응형
728x90
반응형

개인 정보 보호 및 보안 > 보안 > 향상된 보호 모드

반응형
728x90
반응형

윈도우 11 부팅할 때 뜨는 창

나중에 알림

시스템 > 알림 > 추가 설정에서 네모 박스에 체크 해제

반응형

+ Recent posts