Finnick is helping me write a Fur Affinity submissions parsing program
Category Other / All
Species Vulpine (Other)
Size 960 x 1280px
File Size 264.7 kB
Here's a couple helpful, and free guides. There's tons of helpful information all around the web, it's just about finding it!
https://www.python.org/about/gettingstarted/
http://pythonprogramminglanguage.com/
https://www.python.org/about/gettingstarted/
http://pythonprogramminglanguage.com/
I ended up changing it to
print "\nThere",
if numberOfSubmissions == 1:
print "is 1 submission",
else:
print "are " + str(numberOfSubmissions) + " submissions",
print "total"
But there is another factor, the plural of "submission"
It would be funky to read "There is 1 submissions total" or "There are 2 submission total"
By the way, I am equally surprised your username wasn't taken until now. 10+ years, my goodness.
print "\nThere",
if numberOfSubmissions == 1:
print "is 1 submission",
else:
print "are " + str(numberOfSubmissions) + " submissions",
print "total"
But there is another factor, the plural of "submission"
It would be funky to read "There is 1 submissions total" or "There are 2 submission total"
By the way, I am equally surprised your username wasn't taken until now. 10+ years, my goodness.
FA+

Comments