What else can I make with what I’ve learned so far?

Question

What else can I make with what I’ve learned so far?

Answer

You’ve learned enough to make lots of things! Understanding the basic syntax, variables, conditional statements, and even the datetime library leaves you with lots of cool options to choose from. And luckily enough, the internet is filled to the brim with other programmers and coding resources!
Some notable places to look for programming projects are:
www.reddit.com/r/learnprogramming and their FAQ page, which includes project ideas!
The Codecademy Python Forums
And if you get stuck along the way, the forums are there for you, and so is Stack Overflow, arguably the single most useful developer site in the world for when you have a code question!

6 Likes

print “Pig Latin translator”

pyg = “ay”

original = raw_input("Enter an English word: ")

if len(original) > 0 and original.isalpha():

word = original.lower()

first = word[0]

if first == 'a' or first == 'e' or first == 'i' or first == 'o' or  first == 'u':

 new_word = word[1:] + word[0] + pyg

 print new_word

else:

 new_word = word[1:] + first + pyg

 print new_word

else:

print "Start Again"