用法:
winsound.SND_ALIAS
sound
参数是来自注册表的声音关联名称。如果注册表不包含此类名称,则播放系统默认声音,除非还指定了SND_NODEFAULT
。如果没有注册默认声音,请提高RuntimeError
。不要与SND_FILENAME
一起使用。所有 Win32 系统至少支持以下内容;大多数系统支持更多:
PlaySound()
name
对应的控制面板声音名称
'SystemAsterisk'
Asterisk
'SystemExclamation'
Exclamation
'SystemExit'
退出窗口
'SystemHand'
关键停止
'SystemQuestion'
Question
例如:
import winsound # Play Windows exit sound. winsound.PlaySound("SystemExit", winsound.SND_ALIAS) # Probably play Windows default sound, if any is registered (because # "*" probably isn't the registered name of any sound). winsound.PlaySound("*", winsound.SND_ALIAS)
相关用法
- Python wsgiref.simple_server.make_server用法及代码示例
- Python wsgiref.util.FileWrapper用法及代码示例
- Python wsgiref.util.setup_testing_defaults用法及代码示例
- Python OpenCV waitKeyEx()用法及代码示例
- Python weakref.WeakMethod用法及代码示例
- Python wsgiref.validate.validator用法及代码示例
- Python OpenCV waitKey()用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Sympy Permutation.list()用法及代码示例
- Python dask.dataframe.Series.apply用法及代码示例
- Python networkx.algorithms.shortest_paths.weighted.all_pairs_dijkstra_path用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python pyspark.pandas.Series.dropna用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 winsound.SND_ALIAS。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。