self learn python journey

This commit is contained in:
Pardesi_Cat 2024-01-01 02:56:09 +05:30
commit 87bb71ad3c
Signed by: pardesicat
GPG Key ID: 331A25436287A3CF
3 changed files with 41 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
self made practice set for learning python

35
pardesicat.py Normal file
View File

@ -0,0 +1,35 @@
#written by Pardesicat
import os
import sys
import platform
import time
name = input("Enter your name:")
print (f"Namaste : {name}")
time.sleep(3)
system = platform.system()
if system == "Windows":
print(f"{name} You are using Windows.")
elif system == "Linux":
print(f"{name} You are using Linux.")
elif system == "Darwin":
print(f"{name} You are using macOS.")
else:
print(f"Sorry cant detect your system.")
time.sleep(2)
platform = platform.architecture()
print (f"{name} Your Using {platform} Architect of Cpu" )
time.sleep(2)
sys.exit

5
pyproject.toml Normal file
View File

@ -0,0 +1,5 @@
[tool.poetry]
name = "Pardesicat Practice set"
version = "0"
description = "Self made Practice set to learn python"
authors = ["Pardesi_caat <contact@pardesicat.xyz>"]