Click here to Skip to main content
15,894,324 members

Survey Results

In what ways are you using Python?

Survey period: 24 Dec 2018 to 31 Dec 2018

Evidently more Americans have Googled for Python in the last 12 months than they have for Kim Kardashian.

OptionVotes% 
Data analysis679.97
Machine learning649.52
DevOps / System administration334.91
Prototyping and/or Testing497.29
Web Development456.70
Desktop Development405.95
Other416.10
I'm not using Python48672.32
Respondents were allowed to choose more than one answer; totals may not add up to 100%



 
GeneralOn second thought Pin
Bryian Tan28-Dec-18 12:13
professionalBryian Tan28-Dec-18 12:13 
GeneralNo reason to Pin
den2k8826-Dec-18 3:58
professionalden2k8826-Dec-18 3:58 
GeneralVersioning madness Pin
Nathan Minier26-Dec-18 3:07
professionalNathan Minier26-Dec-18 3:07 
GeneralIn its own world Pin
kalberts25-Dec-18 18:28
kalberts25-Dec-18 18:28 
GeneralWhy should I use Python having C#? Pin
Néstor Sánchez Ahumada25-Dec-18 10:52
Néstor Sánchez Ahumada25-Dec-18 10:52 
GeneralRe: Why should I use Python having C#? Pin
kalberts25-Dec-18 17:38
kalberts25-Dec-18 17:38 
GeneralRe: Why should I use Python having C#? Pin
Johnny J.27-Dec-18 22:46
professionalJohnny J.27-Dec-18 22:46 
GeneralRe: Why should I use Python having C#? Pin
Néstor Sánchez Ahumada28-Dec-18 19:57
Néstor Sánchez Ahumada28-Dec-18 19:57 
GeneralI am not surprissed... Pin
Dirk Bahle25-Dec-18 10:19
Dirk Bahle25-Dec-18 10:19 
GeneralRe: I am not surprissed... Pin
W Balboos, GHB26-Dec-18 1:50
W Balboos, GHB26-Dec-18 1:50 
GeneralRe: I am not surprissed... Pin
Dirk Bahle26-Dec-18 2:56
Dirk Bahle26-Dec-18 2:56 
GeneralRe: I am not surprissed... Pin
W Balboos, GHB26-Dec-18 3:01
W Balboos, GHB26-Dec-18 3:01 
GeneralRe: I am not surprissed... Pin
Dirk Bahle26-Dec-18 23:22
Dirk Bahle26-Dec-18 23:22 
GeneralThere was a time syntactic white space was a good idea... Pin
Dan Neely25-Dec-18 9:13
Dan Neely25-Dec-18 9:13 
GeneralRe: There was a time syntactic white space was a good idea... Pin
kalberts25-Dec-18 19:39
kalberts25-Dec-18 19:39 
GeneralRe: There was a time syntactic white space was a good idea... Pin
Dan Neely26-Dec-18 4:36
Dan Neely26-Dec-18 4:36 
GeneralRe: There was a time syntactic white space was a good idea... Pin
kalberts26-Dec-18 9:17
kalberts26-Dec-18 9:17 
Unknown to lots of people, even to Fortran programmers: In a Fortran source file, cols 1-5 were for labels, col 6 for line continuation mark, cols 73-80 for sequence number (not universally supported), but for cols 7-72, whitespace had no significance at all, syntactially or othterwiswe. You could omit or add spaces anywhere; they were peeled off unconditionally. Whether you wrote
TOTALCOST=DISCOUNTEDPRICE(UNITPRICE,AMOUNT)+FREIGHTCOST(UNITWEIGHT,AMOUNT)
or
TOTAL COST = DISCOUNTED PRICE(UNIT PRICE, AMOUNT) + FREIGHT COST(UNIT WEIGHT, AMOUNT)
made no difference.

INTEGERX
CALLFUNCTION(X)
was a perfectly valid variable declaration and subroutinecall (to a subroutine named FUNCTION).

(Even worse, for the parser: There were no reserved words, only predefined ones. So
INTEGER REAL
REAL COMPLEX
REAL = 5
COMPLEX = 3.4
is a perfectly valid set of declarations and assignments. But that's another question, outside this discussion!)

Aside from Fortran keeping cols 1-6 and 72+ for special use, I never used any programming language where whitespace had any other function than as token separator between alphabetic tokens (ws still has that function in more recent languages) or bracing functions (e.g. replacing {} with whitespace indents in Python, or tab indents in classical make files), not even assemblers. There may be such assemblers out there, though!
Generalother Pin
theoldfool25-Dec-18 1:21
professionaltheoldfool25-Dec-18 1:21 
GeneralIt seems... Pin
Mehdi Gholam24-Dec-18 8:20
Mehdi Gholam24-Dec-18 8:20 
Generalwow - I'm shocked Pin
Bryian Tan24-Dec-18 2:54
professionalBryian Tan24-Dec-18 2:54 
GeneralRe: wow - I'm shocked PinPopular
OriginalGriff24-Dec-18 3:11
mveOriginalGriff24-Dec-18 3:11 
GeneralRe: wow - I'm shocked Pin
Bryian Tan24-Dec-18 3:52
professionalBryian Tan24-Dec-18 3:52 
GeneralRe: wow - I'm shocked Pin
Lutosław25-Dec-18 2:06
Lutosław25-Dec-18 2:06 
GeneralRe: wow - I'm shocked Pin
OriginalGriff25-Dec-18 3:21
mveOriginalGriff25-Dec-18 3:21 
GeneralRe: wow - I'm shocked Pin
Lutosław7-Apr-19 0:33
Lutosław7-Apr-19 0:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.