4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pythonista3のコンソール画面をクリアする。

Last updated at Posted at 2018-09-03

Pythonista3でコンソール画面をクリアしたかったので調べたら、フォントやフォントサイズもフォントカラーも変更できることがわかりました。

サンプルコード###

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()

実行結果###

9EC219D6-2651-494C-B5CD-234698F1FDD1.jpeg

4
4
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?