📄 keyword_arguments.py
字号:
def printGameOver( playersName, totalKills ):
print "Game Over... " + playersName + "!"
print "Total Kills: " + str( totalKills ) + "\n"
# Now, lets call our new function and pass in some player names along with
# their total kills...
printGameOver( "camper_boy", 15 )
printGameOver( "Haxxor", 27 )
printGameOver( "c1pher", 51 )
#-------------------------------------------------------------------------------
# If we call the function using keyword arguemnts, order doesn't matter.
#-------------------------------------------------------------------------------
printGameOver( totalKills=12, playersName="killaHurtz" )
raw_input( "\nPress Enter to exit..." )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -