Tags
python
Asked 2 years ago
2 Aug 2021
Views 248
Frederik

Frederik posted

What are Python functions ?

What are Python functions ?

Please dont repeat same function for answer , edit if already answered fucntion for any , with numeric or bullet listing would be very helpfull . please specify each function with example so easy to understand
fatso

fatso
answered Aug 4 '21 00:00

1. print() function :

it simple print() function which print given string

for example

print("Hello japan")


try some formatting with print

country='japan'
print(f"Hello {country}")


it shorthand of formatting function
Post Answer