TIL

yuns_u·2022년 7월 19일
0

교육내용

목록 보기
1/1

7월 19일 교육

# print  다양한 형식으로 출력해보기

print('{:d} {:d}'.format(10,20))
print('{1:d} {0:d}'.format(10,20))
print('{1:d} \n {0:d}'.format(10,20))
print('{1:d} \t{0:d}'.format(10,20))
print('{1:d}\\{0:d}'.format(10,20))
print('{1:d}' '{0:d}'.format(10,20))
print('{1:d}\'{0:d}'.format(10,20))
print('{:d}'.format(10), end='{')
print('{:d}'.format(20), end='*')
print('print 포맷 출력','흥미로워요')

print('안녕'+'하세요')

sayHi='안녕'+'하세요' #문자열과 문자열을 하나로 합칠 수 있다!
print(sayHi)
print('%30s' % sayHi)

비트연산자의 비트 부정 논리 이해하기

profile
💛 공부 블로그 💛

0개의 댓글