Posts
 
Reputation
Loading chart. Please wait.
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
Ranked #72.8K
Ranked #4K
~18.2K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Cup of Squirrel

[QUOTE=Rete;130037]I have another problem with pythons Input, and I was wondering if someone could help me. Whenever I get any input from the user, python keeps printing out on a new line. So for example: [B]test = raw_input ("Input word")[/B] [B]print "Why "+ test +" there a line break all …

Member Avatar for Jason_15
1
18K
Member Avatar for jobs

[QUOTE=jobs;452778]Why can't you do this? [code=python] a = [] a.append('1').append('2') [/code] You can only do this: [code=python] a.append('1') a.append('2') [/code][/QUOTE] Ur question was why can't we do, a.append('1').append('2'). The reason is a.append('1') returns None, the line a.append('1').append('2') is equal to None. append('2'), which is a error

Member Avatar for tharippala
0
77