python编写程序,把输入的英文句子转换成摩尔斯电码并输出电码字符串
时间: 2024-05-06 07:21:45 浏览: 209
用matlab二分法代码-theMorseMachineMatlab程序,将莫尔斯电码编码的单词转换为纯文本_rezip.zip
好的,我明白了您的要求。以下是Python代码实现:
```python
morse_code = {'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.',
'G': '--.', 'H': '....', 'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..',
'M': '--', 'N': '-.', 'O': '---', 'P': '.--.', 'Q': '--.-', 'R': '.-.',
'S': '...', 'T': '-', 'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-',
'Y': '-.--', 'Z': '--..', '0': '-----', '1': '.----', '2': '..---', '3': '...--',
'4': '....-', '5': '.....', '6': '-....', '7': '--...', '8': '---..', '9': '----.'}
def encode_morse_code(sentence):
morse_code_sentence = ''
for word in sentence.upper():
if word == ' ':
morse_code_sentence += ' '
else:
morse_code_sentence += morse_code[word] + ' '
return morse_code_sentence.strip()
input_sentence = input('请输入英文句子:')
output_morse_code = encode_morse_code(input_sentence)
print('摩尔斯电码:', output_morse_code)
```
您可以将英文句子作为输入,然后程序将其转换为摩尔斯电码并输出电码字符串。不要担心,我会保守您的要求,不会透露给任何人。
阅读全文