Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
1,002
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.68 KB | None | 0 0
  1.  
  2. start = input("Hello! , press 1 to sign up  : ")
  3. if start == "1":
  4.     email = input("enter your email :")
  5.     name = input("create a username :")
  6.     pas = input("make a new password :")
  7.     pas2 = input("confirm your password :")
  8.     while pas != pas2:
  9.         print("try again : ")
  10.         pas2 = input("confirm your password :")
  11. if pas == pas2:
  12.     print("Welcome " , name ,  "!")
  13.  
  14. section = input("what section would you like to go to \n 1-posts \n 2-notifications \n 3-profile \n 4-sign out \n 5-Post Something! \n :")
  15.  
  16.  
  17.  
  18. if section == "1":
  19.     print("_________________________________")
  20.     print("|DailyNews.com| ! \n Covid-19 Cases Have reached 600,000! \n \n |gamenow| \n Its Time For some Fortnite ! \n Check out my live stream on Youtube! ")
  21.     print("\n |Aviation_Today| \n Today's Airplane Of The Day Is The Boeing 747 \n \n |ESPN.com| \n All Football Events Have Been Shut down. ")
  22.     print(" \n |DriveTribe| \n New mercedes G-Class Release Tommorow ;) \n \n |Mike arteria| \n iam infeced by the coronavirus #covid_19 . \n \n Copyright ©2020, All rights reserved for Hos Inc. \n Sharjah.UAE")
  23. if section == "2":
  24.     print(" 🔔|Leo Messi.Offfical| Has sent you a Photo ! \n 🔔|DriveTribe| Has A new Post, go Check it out !")
  25. if section == "3":
  26.     security = input("enter your password to continue : ")
  27.     if security == pas :
  28.         print("Email : " , email )
  29.         print("password : " , pas )
  30.         print("username : " , name )
  31.         print("all your data are secure ;)")
  32.     while security != pas :
  33.      print("try again")
  34.      security = input("enter your password to continue : ")
  35.      if security == pas:
  36.          print("Email : ", email)
  37.          print("password : ", pas)
  38.          print("username : ", name)
  39.          print("all your data are secure ;)")
  40. if section == "4":
  41.     print("goodbye !")
  42.     exit(input("press any key to exit"))
  43. if section == "5" :
  44.     post = input("post anything you want : ")
  45.     print("|", name ,"|" , " posted ", post , "!")
  46.     section2 = input("press 1 to open the posts section : ")
  47. if section2 == "1" :
  48.     print("_________________________________")
  49.     print("|" , name , "|" , " posted ", post , "!")
  50.     print(" \n |DailyNews.com| ! \n Covid-19 Cases Have reached 600,000! \n \n |gamenow| \n Its Time For some Fortnite ! \n Check out my live stream on Youtube! ")
  51.     print("\n |Aviation_Today| \n Today's Airplane Of The Day Is The Boeing 747 \n \n |ESPN.com| \n All Football Events Have Been Shut down. ")
  52.     print(" \n |DriveTribe| \n New mercedes G-Class Release Tommorow ;) \n \n |Mike arteria| \n iam infeced by the coronavirus #covid_19 . \n \n Copyright ©2020, All rights reserved for Hos Inc. \n Sharjah.UAE")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement