Python Programming Basics Notes
Mar 15, 2025 · 79 min read · Simple python Code Sample #!/usr/bin/python3 print("Hello world This is fucking Test.") Taking input from User #!/usr/bin/python3 name = input("Name : ") print("Your name is : %s" % name) Functions def function_name(arguments....): // functio...
Join discussion















