This problem occurred to me quite recently. I have no idea what i am doing wrong due to me being a beginner in python. If anyone is interested I am using a Raspberry pi 400 and I am using VSC but anyways here is my code:
import turtle
import random
pat=turtle.Turtle()
colours=["orange","blue","red","yellow", "cyan"]
turtle.Screen().bgcolor("black")
for i in range(200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000):
for i in range(2):
pat.forward(300)
pat.right(100)
pat.right(100)
pat.forward(300)
pat.right(100)
pat.left(5)
pat.color(random.choice(colours))
Could it be that you have a file named turtle.py in the same folder, or in any other folder contained in the PYTHONPATH environment variable? In that case import turtle might not load the turtle package, but instead the local Python file, which does not contain an executable object named Turtle and hence the AttributeError is raised when calling turtle.Turtle().
Related
I created module that have tree functions and when I am trying to import that module I have red line under the module name and the error says "No module named data" and the file is in the same path as the file I am trying to import to. but the functions are working but it's causing bugs in my program,
Someone know how do I fix that problem?.
[![this is the image for reference
I am not able to use the init function.
please solve this issue.
]1]1
You named your script pygame.py, that is a very bad idea because it shadows the real pygame module, change the name of your script and it should work fine.
I'm new to python and programming in general, and I wanted to play around with the turtle module, but when I try to import it (I was told it was part of the python library so I did not need to download it) I get an error telling me that there was no module.
The specific error I get in Visual Studio Code is:
File "turtle.py", line 107, in
ModuleNotFoundError: No module named 'tkinter'
I have tried import turtle, from turtle import * and my python file is not named anything related to the turtle module.
I've just installed a NumPy in my computer and everything in Python consol is OK- https://i.stack.imgur.com/DFC4O.png
but in every interpreter i have the same problem:
https://i.stack.imgur.com/ANxG2.png
Thanks for help!
You called your program file numpy.py so the file is trying to import itself rather than the real numpy module. Call your file something like numpy_test.py instead.
Be sure you use the correct Python path.
If other attributes works well?
you should check this link first Why does PyCharm give unresolved reference errors on some Numpy imports?
I am a newbie to python and i am trying to learn online. I tried importing matplotlib on python 3.6 but i keep getting this error:
problem in matplotlib - AttributeError: module 'numbers' has no attribute 'Integral'.
I am using Anaconda. and i have installed the matplotlib library too. I have no idea what is going on. Please help.
As you told us in your comment, your file is named numbers.py. This file is probably the problem, as it hides the numbers.py file used by matplotlib. Your numbers.py file does not provide the Integral attribute, thus the error message.
Solution: Rename your file.