psyhonista3의 컨트롤러 화면을 지웁니다.
3516 단어 Python3Pythonista3iOS
샘플 코드
import console
# コンソール画面をクリア
console.clear()
# フォントとフォントサイズを変更
console.set_font('Menlo',24)
# フォントカラーを変更
console.set_color(255,255,0)
print('Hello')
# デフォルトに戻す
console.set_font()
console.set_color()
print('Hello')
# 1文字ずつ指定することも可能です。
S='Hello'
console.set_font('Zapfino',48)
for i,c in enumerate(S,1):
R, G, B = i&4 and 255, i&2 and 255, i&1 and 255
console.set_color(R,G,B)
print(c,end='')
'''
for i in range(1,6):
C=bin(i)[2:].zfill(3)
R=int(C[0]*255)
G=int(C[1]*255)
B=int(C[2]*255)
console.set_color(R,G,B)
print(S[i-1],end='')
# デフォルトに戻す
console.set_font()
console.set_color()
실행 결과
Reference
이 문제에 관하여(psyhonista3의 컨트롤러 화면을 지웁니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/maboy/items/063dcf1470c56d942fd1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)