fork download
  1. # your code goes here
  2.  
  3. print("Rahul",25, end=",");
  4. print("James",29)
  5. print("James","hello", "kelly", 29, sep="\n")
  6.  
  7. help("keywords")
  8.  
  9.  
Success #stdin #stdout 0.06s 12156KB
stdin
Standard input is empty
stdout
Rahul 25,James 29
James
hello
kelly
29

Here is a list of the Python keywords.  Enter any keyword to get more help.

False               break               for                 not
None                class               from                or
True                continue            global              pass
__peg_parser__      def                 if                  raise
and                 del                 import              return
as                  elif                in                  try
assert              else                is                  while
async               except              lambda              with
await               finally             nonlocal            yield