Python Forum
Help in displaying odd numbers from 1 to 100 in py
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help in displaying odd numbers from 1 to 100 in py
#1
I want a script to display odd numbers from 1 to 100 (in Python 3.x)

>Thanks in advance
Reply
#2
Please show us an attempt so we can try to assist you.
Reply
#3
This is my attempt  :  
for k in range(1,101,2): 
print(K)
But it shows following error

Error:
Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 17:54:52) [MSC v.1900 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> for k in range(1,101,2): print(K) SyntaxError: expected an indented block
Reply
#4
Error:
SyntaxError: expected an indented block
place 4 spaces in front of print(k)
That makes an indented block
Reply
#5
As the error says you need to have the second line indented.  What tutorial are you following?
for k in range(1,101,2):
    print(k)
Reply
#6
As far as odd numbers go, do you know how to determine whether a number is odd (mathematically, not necessarily in Python)?
Reply
#7
(Apr-27-2017, 04:43 AM)RandoomDude Wrote: This is my attempt  :  
for k in range(1,101,2): 
print(K)
But it shows following error

Error:
Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 17:54:52) [MSC v.1900 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> for k in range(1,101,2): print(K) SyntaxError: expected an indented block
Except for the indentation error, you will get NameError after indentation is ok. In print() you are using upper K
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply
#8
(Apr-27-2017, 07:30 AM)wavic Wrote: Except for the indentation error, you will get NameError after indentation is ok. In print() you are using upper K
Wavic,you are the man,i just checked my code and found that i used upper K in between () of the print statement.

Thanks
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Print Numbers starting at 1 vertically with separator for output numbers Pleiades 3 3,664 May-09-2019, 12:19 PM
Last Post: Pleiades

Forum Jump:

User Panel Messages

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