我正在尝试在以下文章中运行该程序:
https://blockgeeks.com/guides/python-blockchain-2/
我已将所有代码复制到我的Spyder IDE中。当我运行它时,有一个while循环开始,要求用户从它打印的选项列表中选择一个数字。
选择一个数字后,程序应执行请求的操作。当我选择它时,它只是循环回到while循环的开始。
它似乎忽略了while循环中的其余代码(if语句部分)。
令人困惑的是,如果我从while循环中使用的程序中获取代码的一部分,并分别运行它们,它们将起作用,即,如果我运行以下代码并选择数字1,它将在if语句。
为什么if语句在这里运行而不在主程序中运行?
#function 1:
def get_user_choice():
user_input = input("enter a number: ")
return user_input
#function 2:
def get_transaction_value():
tx_recipient = input('Enter the recipient of the transaction: ')
tx_amount = float(input('Enter your transaction amount '))
return tx_recipient, tx_amount
while True:
print("Choose an option")
print('Choose 1 for adding a new transaction')
print('Choose 2 for mining a new block')
print('Choose 3 for printing the blockchain')
print('Choose anything else if you want to quit')
user_choice = get_user_choice()
if user_choice == '1':
tx_data = get_transaction_value()
print(tx_data)
更新: 对不起,我意识到我可能还不太清楚问题是什么。
上面的代码是整个程序的一部分代码,可以按预期运行,独立于主程序。
以下代码是链接中文章的整个程序。它包括程序中的所有代码。如果我运行此主程序,则while循环不使用if语句。在我选择了1、2或3之后,它似乎才刚刚退出循环(其他任何数字都应该退出循环)。
这里是一个屏幕快照的链接,显示了在我为该选项选择数字1之后控制台的外观。
# Section 1
import hashlib
import json
reward = 10.0
genesis_block = {
'previous_hash': '',
'index': 0,
'transaction': [],
'nonce': 23
}
blockchain = [genesis_block]
open_transactions = []
owner = 'Blockgeeks'
def hash_block(block):
return hashlib.sha256(json.dumps(block).encode()).hexdigest()
# Section 2
def valid_proof(transactions, last_hash, nonce):
guess = (str(transactions) + str(last_hash) + str(nonce)).encode()
guess_hash = hashlib.sha256(guess).hexdigest()
print(guess_hash)
return guess_hash[0:2] == '00'
def pow():
last_block = blockchain[-1]
last_hash = hash_block(last_block)
nonce = 0
while not valid_proof(open_transactions, last_hash, nonce):
nonce += 1
return nonce
# Section 3
def get_last_value():
""" extracting the last element of the blockchain list """
return(blockchain[-1])
def add_value(recipient, sender=owner, amount=1.0):
transaction = {'sender': sender,
'recipient': recipient,
'amount': amount}
open_transactions.append(transaction)
# Section 4
def mine_block():
last_block = blockchain[-1]
hashed_block = hash_block(last_block)
nonce = pow()
reward_transaction = {
'sender': 'MINING',
'recipient': owner,
'amount': reward
}
open_transactions.append(reward_transaction)
block = {
'previous_hash': hashed_block,
'index': len(blockchain),
'transaction': open_transactions,
'nonce': nonce
}
blockchain.append(block)
# Section 5
def get_transaction_value():
tx_recipient = input('Enter the recipient of the transaction: ')
tx_amount = float(input('Enter your transaction amount '))
return tx_recipient, tx_amount
def get_user_choice():
user_input = input("Please give your choice here: ")
return user_input
# Section 6
def print_block():
for block in blockchain:
print("Here is your block")
print(block)
# Section 7
while True:
print("Choose an option")
print('Choose 1 for adding a new transaction')
print('Choose 2 for mining a new block')
print('Choose 3 for printing the blockchain')
print('Choose anything else if you want to quit')
user_choice = get_user_choice()
if user_choice == 1:
tx_data = get_transaction_value()
recipient, amount = tx_data
add_value(recipient, amount=amount)
print(open_transactions)
elif user_choice == 2:
mine_block()
elif user_choice == 3:
print_block()
else:
break
[1]: https://i.stack.imgur.com/FIrn7.png
答案 0 :(得分:1)
比较值时,Python在数据类型方面比其他一些语言更强。这意味着Python中没有字符串将等于数字。
或者换句话说,"1" == 1
将是False
。
这意味着您必须考虑到在Python 3中您将从input()
收到一个字符串(在Python 2中不一定是这样)。
您可以将其直接与另一个字符串进行比较:
user_choice = input()
if user_choice == "1":
print("You chose item 1")
或者您可以先将其转换为数字,然后将其与数字进行比较:
user_choice = int(input())
if user_choice == 1:
print("You chose item 1")
请注意,在前一种情况下,如果用户输入多余的空格,则可能不够健壮;在后一种情况下,如果用户未输入整数(甚至根本没有输入),它将大声失败。
如有必要,两种方式都可以使用额外的代码来处理。在前一种情况下,可以使用user_input = input().strip()
去除空格,在后一种情况下,可以使用try ... except ...
块捕获异常。
答案 1 :(得分:0)
您只处理了user_choice == '1'
的情况。如果输入1以外的任何值,程序将把控制权返回到while循环的开始。
我建议您使用调试器查看if条件之前的user_choice
。如果没有,请使用打印件。
print("user_choice: {}, type: {}".format(user_choice, type(user_choice))