Python Forum
Invalid Syntax problem (?!?)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Invalid Syntax problem (?!?)
#1
Hello, I am just starting to learn Python with the Python 3.5.2 version. I am supposed to start with a really easy task, renaming all the files in a folder. (Taking out the numbers out of the filenames.)

But I always get a Syntax-Error message (Invalid Syntax). Can someone please help me? I don't know what is wrong!

line 13: os apparently is a syntax error
import os

def rename_files():
    #(1) get file names form a folder
    file_list = os.listdir(r"C:\Users\harley\Documents\Python\Introduction\rename")
    #print(file_list)
    saved_path = os.getcwd()
    print("Current Wokring Directory is", saved_path)
    os.chdir(r"C:\Users\harley\Documents\Python\Introduction\rename")
    #(2) for each file, rename filename
    for file_name in file_list:
        os.rename(file_name, filename.translate("0123456789")
    os.chdir(saved_path)

rename_files()
Reply


Messages In This Thread
Invalid Syntax problem (?!?) - by harley_quinn - Nov-08-2016, 06:45 PM
RE: Invalid Syntax problem (?!?) - by nilamo - Nov-08-2016, 06:49 PM
RE: Invalid Syntax problem (?!?) - by micseydel - Nov-08-2016, 06:59 PM
RE: Invalid Syntax problem (?!?) - by snippsat - Nov-08-2016, 07:00 PM
RE: Invalid Syntax problem (?!?) - by wavic - Nov-08-2016, 07:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Invalid syntax Slome 2 1,974 May-13-2022, 08:31 PM
Last Post: Slome
  print(f"{person}:") SyntaxError: invalid syntax when running it AryaIC 11 16,383 Nov-07-2020, 10:17 AM
Last Post: snippsat
  Invalid syntax error, where? tucktuck9 2 3,433 May-03-2020, 09:40 AM
Last Post: pyzyx3qwerty
  Invalid syntax defining a dictionary? ep595 6 5,113 Nov-19-2019, 08:06 PM
Last Post: ThomasL
  Syntax Error: Invalid Syntax in a while loop sydney 1 4,089 Oct-19-2019, 01:40 AM
Last Post: jefsummers
  [split] Please help with SyntaxError: invalid syntax Mason 1 2,210 Apr-28-2019, 06:58 PM
Last Post: Yoriz
  SyntaxError: Invalid syntax in a while loop ludegrae 3 14,759 Dec-18-2018, 04:12 PM
Last Post: Larz60+
  SyntaxError: invalid syntax at run .py tuxo9999 10 7,291 Aug-23-2018, 03:58 PM
Last Post: Axel_Erfurt
  Homework: Invalid syntax using if statements chehortop 3 3,669 Mar-01-2018, 04:38 AM
Last Post: micseydel
  invalid syntax error penlemon 4 3,845 Jan-27-2018, 02:46 PM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

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