Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: How to prevent python from going to new line in for loop?
Post: RE: How to prevent python from going to new line i...

Hi, Check this https://docs.python.org/3/library/functions.html#print for x in "Python": ...: print(x,end='')print(x,y,sep='')So basically every print automatically add \n to end that is re...
prateekshaw General Coding Help 3 4,962 Jan-15-2020, 03:59 PM
    Thread: Homework
Post: RE: Homework

Yes , that is why we need to convert to lower case when we are comparing. Python is case sensitive which mean 'A' == 'a' is false. So if user enter capital or lower case, still both should be same th...
prateekshaw Homework 5 2,296 Jan-09-2020, 09:12 PM
    Thread: Homework
Post: RE: Homework

current_users = ['MARY', 'michael', 'john', 'cyril', 'philippa'] new_users = ['mike', 'mary', 'joy', 'philippa', 'peace'] current_users_lower= list(map(lambda x:x.lower(),current_users)) new_users_low...
prateekshaw Homework 5 2,296 Jan-09-2020, 01:19 PM
    Thread: bar graph
Post: bar graph

import matplotlib.pyplot as plt; plt.rcdefaults() import numpy as np import matplotlib.pyplot as plt x_axis_value = ('A', 'B', 'C', 'D') y_axis_value = [4,3,2,1] y_axis_value_arrange = np.arange(len(...
prateekshaw General Coding Help 0 1,184 Nov-19-2019, 10:33 PM
    Thread: Python Certification
Post: RE: Python Certification

Thank you.
prateekshaw News and Discussions 2 2,454 Nov-15-2019, 07:17 PM
    Thread: Python Certification
Post: Python Certification

Hi , Is someone tell me about official python certificate ?
prateekshaw News and Discussions 2 2,454 Nov-14-2019, 08:52 PM
    Thread: function vs method
Post: function vs method

Hi All, I am new to python , i was reading about function and method and it seems to me that function is like static method in java (kind of , no need to refer class to call this method.) and method ...
prateekshaw General Coding Help 2 2,201 Nov-14-2019, 01:30 PM

User Panel Messages

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