Quick actions

cmd+k|ctrl+k

Navigation

Languages

Lesson08

Snippet info

Language

Python

Visibility

public

Author

victormakwaitat

Created

2024-10-24T11:46:17.265261Z

Updated

2024-10-24T13:52:32.464972Z

name = 'Om'
age = 22
print(f"Hello, My name is {name} and I'm {age} years old.")

# Function default return "None" datatype
def a():
    x = 1
    print(f"hello {x}")
b = a()
print(b)
INFO