Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~14.3K People Reached
About Me

Retired programmer, background in FORTRAN, C, C++, ksh &c, Perl

Interests
programming, algorithms,
PC Specs
Toshiba / Win 7 Home Premium
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for ZZMike

This is Python 3.4.2 The documentation says that s2 = s1.strip('a') will strip out all the 'a' in s1. When I run it, only the leftmost character - and only if it is 'a' - is stripped. The default s2 = s1.strip() takes out all whitespace. PS: I understand that …

Member Avatar for tinstaafl
0
13K
Member Avatar for pravinkumar1

Perhaps you're looking into the history of programming languages? I found references to Quick Basic doing a web search. Perhaps that would be a good place to start.

Member Avatar for pravinkumar1
0
433
Member Avatar for MamaTina21

Each function changes the string 'letters1' in place. You'll need to save the results of each function so that the next call gets the original string.

Member Avatar for ZZMike
0
848
Member Avatar for ZZMike

I'm new to Python, but have a long background in Perl, Ksh &c, C, and others. """One of the different things about Python is the import statement. How do you tell where a function or class name should be imported from? Some are obvious, like sys and math, but others …

Member Avatar for ZZMike
0
154

The End.