8

我正在制作一个程序,它接受输入并将其转换为计算机哔哔声形式的莫尔斯电码,但我不知道如何制作它,所以我可以在输入中输入多个字母而不会出错。

这是我的代码:

import winsound
import time

morseDict = {
'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': '--..'
}
while True: 
    inp = raw_input("Message: ")
    a = morseDict[inp] 
    morseStr =  a
    for c in morseStr:
        print c
        if c == '-':
            winsound.Beep(800, 500)
        elif c == '.':
            winsound.Beep(800, 100)
        else:
            time.sleep(0.4)  
        time.sleep(0.2)

现在一次只需要一个字母,但我希望它带短语。

4

5 回答 5

2

尝试将循环更改为如下内容:

while True:
    inp = raw_input("Message: ")
    for char in inp:
        for x in morseDict[char]:
            print x
            if x == "-":
                winsound.Beep(800, 500)
            elif x == ".":
                winsound.Beep(800, 100)
            else:
                time.sleep(0.4)
            time.sleep(0.2)

这样,您首先遍历输入中的字符,然后查找其中的字符morseDict并遍历morseDict[char].

于 2013-05-03T01:08:54.480 回答
1

只需添加一个额外的 for 循环并遍历输入中的字符即可获取消息!但不要忘记在必要时结束循环!

在下面的代码中,我将消息解码后询问您是否要发送另一个,如果您键入“n”,它将退出循环!

going = True
while going: 
    inp = raw_input("Message: ")
    for i in inp:
        a = morseDict[i] 
        morseStr =  a
        for c in morseStr:
            print c
            if c == '-':
                winsound.Beep(800, 500)
            elif c == '.':
                winsound.Beep(800, 100)
            else:
                time.sleep(0.4)  
            time.sleep(0.2)
    again = raw_input("would you like to send another message? (y)/(n) ")
    if again.lower() == "n":
         going = False

现在你还有一个问题......你没有考虑空间!所以你仍然只能发送文字!如果我是正确的,单词之间的空格是摩尔斯电码中的固定定时静音,所以我想说你应该做的是添加:

" ": 'x'

这样,在尝试查找空间实例时它不会返回错误,它将在您的else语句中运行并在下一个单词之前添加额外的 0.4 秒!

于 2013-05-03T01:09:45.303 回答
1

我相信您需要遍历输入中的字母。

while True: 
    inp = raw_input("Message: ")
    for letter in inp:          # <- Edit in this line
        a = morseDict[letter]   # <- and this one, rest have increased indent
        morseStr =  a
        for c in morseStr:
            print c
            if c == '-':
                winsound.Beep(800, 500)
            elif c == '.':
                winsound.Beep(800, 100)
            else:
                time.sleep(0.4)  
            time.sleep(0.2)
        time.sleep(0.4)        # Or desired time between letters
于 2013-05-03T01:13:11.073 回答
1

替换这一行:

a = morseDict[inp]

用这条线:

a = ' '.join([morseDict[c] for c in inp])

这需要输入字符串中的每个字符,查找莫尔斯等效值,并将结果与​​空格分隔符连接在一起(假设您希望字母之间有额外的 0.4 秒延迟)。

于 2013-05-03T01:23:47.767 回答
0

尝试第一个循环,而消息末尾有三个空格以结束循环。或 /n 字符。它只是一个想法。对不起,我的英语不好。

于 2013-05-03T03:04:00.333 回答