Python Turtle - Code a Building Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ธ.ค. 2024

ความคิดเห็น • 16

  • @metsrock1500
    @metsrock1500 3 ปีที่แล้ว +4

    I did the code and I got a funky building

    • @zyphi_au
      @zyphi_au 2 ปีที่แล้ว

      You must have not changed the coordinates

  • @zyphi_au
    @zyphi_au 2 ปีที่แล้ว

    Thank you, this was for school

  • @chanwoo2419
    @chanwoo2419 8 หลายเดือนก่อน

    how can i make this into a 10 story building?

    • @GeekTutorials1
      @GeekTutorials1  7 หลายเดือนก่อน

      The loop will need to be adjusted to draw more windows. But also, the height of the building and the roof will need to be changed. A bit of tinkering.

  • @py_tok5589
    @py_tok5589 2 ปีที่แล้ว

    good stuff, nice enjoyed

  • @IARRCSim
    @IARRCSim ปีที่แล้ว

    Is it ok to share a Logo script that draws something closely resembling this if I comment a link back to this video?

    • @GeekTutorials1
      @GeekTutorials1  ปีที่แล้ว

      Yes, mate - you can go for it.

    • @IARRCSim
      @IARRCSim ปีที่แล้ว

      @@GeekTutorials1 thanks

  • @arjunsaraff6516
    @arjunsaraff6516 2 ปีที่แล้ว

    For some reason, there isn't any space between my windows, it just makes one large horizontal window. Can you help?

    • @GeekTutorials1
      @GeekTutorials1  2 ปีที่แล้ว

      There needs to be a bigger space between each window on the x-axis. It will be in the code somewhere after you draw one single window.

    • @arjunsaraff6516
      @arjunsaraff6516 2 ปีที่แล้ว

      @@GeekTutorials1 It works now. Thank you so much!

  • @kunpowchicken106
    @kunpowchicken106 2 ปีที่แล้ว

    My windows are coming out as diamonds, how can I fix this?

    • @GeekTutorials1
      @GeekTutorials1  2 ปีที่แล้ว

      Before you draw the windows, you turtle must be facing a different angle to mine. Try writing the setheading() function just before you draw the windows - you can then specify which direction your turtle faces.
      e.g. setheading(0)

  • @davormazic
    @davormazic 3 ปีที่แล้ว

    Why does x have to be global, and y does not?

    • @GeekTutorials1
      @GeekTutorials1  3 ปีที่แล้ว

      If we didn't make it global, we wouldn't be able to use the "x = x + 70" line of code and we wouldn't be able to place our windows in rows nice and quickly.