ASPタイプで使うとフォントタイプに左右される様です

↓こういう風に書いています↓
a)取り敢えず文字表示→Hello World
↑print(a)取り敢えず文字表示→Hello World

b)ここからIF関数を試します→ Nice to meet you, Python
↑a = 10
if a > 100:
print(" Hello World")
elif 1 > a:
print(" How are you, System")
else:
print(" Nice to meet you, Python")

c)SQL(データベースを操作するコマンド)を実行する
cur.execute("SELECT id, tag_name, tag_css, status FROM affiliate_tag_mtbl where `order` <> '1'")

# 実行結果を取得する
rows = cur.fetchall()

#for row in rows:
print(rows)

[{'id': 1, 'tag_name': 'はてな(プログラミング教育)', 'tag_css': 'hatena1', 'status': '1'}, {'id': 2, 'tag_name': 'はてな(副業とWワーク)', 'tag_css': 'hatena2', 'status': '1'}, {'id': 3, 'tag_name': 'はてな(健康と年金)', 'tag_css': 'hatena3', 'status': '1'}, {'id': 4, 'tag_name': 'fan', 'tag_css': '(副業プログラマーのMono選びからのライフワーク^_^)', 'status': '1'}, {'id': 5, 'tag_name': 'ライブドア', 'tag_css': 'livedoor', 'status': '1'}, {'id': 6, 'tag_name': '楽天', 'tag_css': 'rakuten', 'status': '1'}]