parameter typing python

Solutions on MaxInterview for parameter typing python by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "parameter typing python"
Monica
11 Feb 2020
1#function expects a string and returns a string
2def greeting(name: str) -> str:
3    return 'Hello ' + name