Quick actions

cmd+k|ctrl+k

Navigation

Languages

2026011404

Snippet info

Language

Python

Visibility

public

Author

shaoronghong15

Created

2026-01-14T13:55:22.303103Z

Updated

2026-01-14T13:56:02.532412Z

#!/usr/bin/python
# -*- coding: UTF-8 -*- 
 
# 输出 Python 的每个字母
for letter in 'Python':
   if letter == 'h':
      pass
      print('这是 pass 块')
   print('当前字母 :', letter)
 
print("Good bye!")
INFO