Python Forum
[split] SyntaxError: invalid syntax
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[split] SyntaxError: invalid syntax
#1
Hello,
I am sorry if this forum is closed but I have a similar issue where my code is telling me this:

Error:
Traceback (most recent call last): File "program.py", line 4, in <module> import moon as m File "/home/pi/moon.py", line 8 of the moon for a given date; and phase_hunt(), which given a date, finds the dates of the nearest full moon, new moon, etc. """ from math import sin, cos, floor, sqrt, pi, tan, atan # asin, atan2 ^ SyntaxError: invalid syntax
why is this? code can be provided. I must also mention that I am writing this on a raspberry pi zero running rasbpian lite.
Reply
#2
you need to install the 'moon' package
you should be able to install with pip3 install moon (if allowed on Pi)
Reply
#3
You your file /home/pi/moon.py is being found instead of the moon module. Don't use the same name for a file and a module. Rename your moon.py to something different.
Reply
#4
You have
from math import sin, cos, floor, sqrt, pi, tan, atan # asin, atan2
on the end of a docstring line
of the moon for a given date; and phase_hunt(), which given a date, finds the dates of the nearest full moon, new moon, etc. """
move it onto a line of its own.
bowlofred likes this post
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  print(data) is suddenly invalid syntax db042190 6 1,184 Jun-14-2023, 02:55 PM
Last Post: deanhystad
  SyntaxError: invalid syntax ?? korenron 15 5,716 Jan-25-2022, 11:46 AM
Last Post: korenron
  Invalid syntax with an f-string Mark17 7 7,783 Jan-14-2022, 04:44 PM
Last Post: Mark17
  invalid syntax in my class CompleteNewb 2 1,897 Dec-13-2021, 09:39 AM
Last Post: Larz60+
Exclamation Invalid syntax error(Predict Ethereum Price) lulu43366 2 3,165 Sep-24-2021, 01:24 PM
Last Post: lulu43366
  Unexplained Invalid syntax Error cybertooth 5 3,251 Aug-02-2021, 10:05 AM
Last Post: cybertooth
  [split] [Errno 22] Invalid argument Junaid 0 2,282 Jun-12-2021, 06:02 PM
Last Post: Junaid
  Invalid syntax error - need help fixing calgk01 3 3,278 Feb-23-2021, 08:41 PM
Last Post: nilamo
  Invalid syntax using conditionals if - else jperezqu 1 2,331 Jan-13-2021, 07:32 PM
Last Post: bowlofred
  invalid syntax in line 5. Help Asadzangibaloch 2 2,390 Dec-10-2020, 04:26 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020