我是靠谱客的博主 强健机器猫,最近开发中收集的这篇文章主要介绍python中if后面为什么用冒号_if语句中冒号的语法错误,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我是python新手,我正在制作一种游戏,作为我的第一个项目之一,它猜测1到10之间的数字,然后用户猜测它。他们有三个猜测,程序会告诉用户下一个猜测是否需要更高或更低。代码中出现错误的部分并不重要,因为如果用户两次输入相同的答案,允许他们第一次重复猜测,但不允许第二次重复猜测,这只会使猜测不被浪费。在代码上,我已经标记出问题所在。就像我说的,我对python很陌生,这可能是一些业余的noobie错误。提前谢谢。import time # This imports the time module.

import random # This imports the random module.

MyNumber = random.randrange(1,10) # This picks a number for the variable 'MyNumber'

firstGuess = int(input('Ok then, we shall begin! What is your first guess?'))

print()

if firstGuess == (MyNumber):

print('Well done! You win!')

time.sleep(3)

exit()

if firstGuess < MyNumber:

print('Go Higher!')

time.sleep(1)

if firstGuess > MyNumber:

print('Go Lower!')

time.sleep(1)

print()

secondGuess = int(input('Better luck this time! What is your second guess?'))

print()

if secondGuess == firstGuess:

print('You tried that one last time! Don't worry, I won't count that one!')

bungled = (1)

secondGuess = int(input('What is your second guess?')

if secondGuess == firstGuess: # This colon is causing the problem. <===========

print('You've already tried that one twice!')

bungled = (2)

if secondGuess == MyNumber:

print('Well done! You win!')

time.sleep(3)

exit()

if secondGuess < MyNumber:

print('Go Higher!')

time.sleep(1)

if secondGuess > MyNumber:

print('Go Lower!')

time.sleep(1)

print()

thirdGuess = int(input('This is your final chance! What is your third guess?'))

print()

if thirdGuess == MyNumber:

print('Well done! You win!')

time.sleep(3)

exit()

if thirdGuess < MyNumber:

MyNumber = str(MyNumber)

print('Sorry! You lost! The number was '+MyNumber)

time.sleep(1)

exit()

if thirdGuess > MyNumber:

MyNumber = str(MyNumber)

print('Sorry! You lost! The number was '+MyNumber)

time.sleep(1)

exit()

最后

以上就是强健机器猫为你收集整理的python中if后面为什么用冒号_if语句中冒号的语法错误的全部内容,希望文章能够帮你解决python中if后面为什么用冒号_if语句中冒号的语法错误所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部