SyntaxError invalid syntax print worldlists len words

0 votes

Hi Guys,

I am trying to print the output of my python code. But it is showing me the below error.

File "<ipython-input-3-8f2363e8378d>", line 10
    print worldlists[len(words)]
                   ^
SyntaxError: invalid syntax

Can anyone help me with this?

Jun 30, 2020 in Python by akhtar
• 38,230 points
2,126 views

1 answer to this question.

0 votes

Hi@akhtar,

This syntax will not allow in all the platforms. If you are trying to print any string you need to use double-quotes. But here you are trying to print some variable value. So you need to use parenthesis as given below. 

print (worldlists[len(words)])

I hope this will help you.

answered Jun 30, 2020 by MD
• 95,440 points

Related Questions In Python

0 votes
1 answer

Python error "SyntaxError: invalid syntax"

but i m getting this ouput: Enter the ...READ MORE

answered Mar 20, 2020 in Python by anonymous
8,044 views
0 votes
2 answers

%matplotlib inline SyntaxError: invalid syntax

I found a good solution to solve ...READ MORE

answered May 2, 2020 in Python by Edu
24,129 views
0 votes
1 answer

Why am I getting the syntax error SyntaxError invalid syntax in a line that contains fully valid syntax?

A "SyntaxError: invalid syntax" is a common ...READ MORE

answered Oct 18, 2023 in Python by anonymous
• 3,320 points
681 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,023 views
0 votes
1 answer
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

answered Apr 11, 2018 in Python by hemant
• 5,790 points
3,409 views
0 votes
1 answer

SyntaxError: invalid syntax in inline function.

Hi@akhtar, You need to write your if-else code ...READ MORE

answered Oct 5, 2020 in Python by MD
• 95,440 points
928 views
0 votes
2 answers

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xba in position 16: invalid start byte

Thanks, This answer was helpful. READ MORE

answered Jul 11, 2020 in Python by Prashant Chhatrashali
15,569 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP