gpt4 book ai didi

python - 请求用户输入海龟圈程序的 X/Y 位置

转载 作者:太空宇宙 更新时间:2023-11-03 16:39:54 24 4
gpt4 key购买 nike

这是我的程序:

from turtle import *
xpos=0
ypos=0
radius = 35
while radius > .1:
pu()
goto (xpos, ypos)
pd()
circle(radius)
ypos = ypos + (radius*2)
radius = radius - 5

我想以某种方式要求用户输入 x 和 y 位置,并请求半径和收缩值。然后程序应该执行用户键入的过程(取决于他们使用的整数)这可能吗?

我猜它类似于 int(input

最佳答案

您可以使用raw_input:

# use input if using python3
x_pos = int(raw_input("Insert x pos: "))
y_pos = int(raw_input("Insert y pos: "))
radius = int(raw_input("Insert radius: "))
shrink = int(raw_input("Insert shrink value: "))

print "x: {} y: {} radius: {} shrink: {}".format(x_pos, y_pos, radius, shrink)

命令行示例:

% python request_input.py
Insert x pos: 4
Insert y pos: 5
Insert radius: 1
Insert shrink value: 2
x: 4 y: 5 radius: 1 shrink: 2

关于python - 请求用户输入海龟圈程序的 X/Y 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36904175/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com