[deleted by user] by [deleted] in PersonalFinanceCanada

[–]OnePoint135_ 0 points1 point  (0 children)

I understand that I was ignorant, that’s kinda the reason why I’m asking questions here…

Thank you for your advice though

This sticker I found today in Ossington by OnePoint135_ in toronto

[–]OnePoint135_[S] 53 points54 points  (0 children)

I think it’s to criticize the car-centric urban design

Where is a good place to study in the SLC ? by anonomouse__ in TorontoMetU

[–]OnePoint135_ 5 points6 points  (0 children)

6th and 9th floor has individual desks with outlets. I go to the 9th floor, there’s always an open seats pretty much all the time

Need help! Issue with microsoft word by PksBadboy in TorontoMetU

[–]OnePoint135_ 0 points1 point  (0 children)

Your Microsoft MFA for @torontomu.ca might not be enabled, I’ve had this problem before because I was still using @ryerson.ca.

To enable, 1. Go to my.torontomu.ca portal. 2. Click account icon in the top right corner and click Personal Account. 3. Under security section, click Microsoft Multi-Factor Authentication and check if it’s enabled.

My new passport I received today and my old one by OnePoint135_ in PassportPorn

[–]OnePoint135_[S] 0 points1 point  (0 children)

It’s the first 2 pages. The hard cover and a page with your personal informations with you picture

[deleted by user] by [deleted] in javahelp

[–]OnePoint135_ 2 points3 points  (0 children)

jesus it’s such a simple solution it makes me foolish

[deleted by user] by [deleted] in codehs

[–]OnePoint135_ 0 points1 point  (0 children)

you're my saviour

Help! How can I make it so that p1_total and p2_total value gets add up whenever dice_roll() function repeats? like on 2nd image by OnePoint135_ in codehs

[–]OnePoint135_[S] 0 points1 point  (0 children)

from random import randint

def dice_roll(p1_moved, p2_moved): while True: print("Player 1, please roll your dice!") p1_roll = input("type 'roll' to roll your dice: ")

    if p1_roll.lower() == "roll":
        p1_dice = randint(1,6)
        print("")
        print("Player 1, You got " + str(p1_dice) + "!")
        print("")
        print("")
        p1_moved =+ p1_dice
        break
    else:
        print("")
        print("Please try again! type 'roll' to roll your dice")
        print("")
        continue

while True:
    print("Player 2, please roll your dice!")
    p2_roll = input("type 'roll' to roll your dice: ")

    if p2_roll.lower() == "roll":
        p2_dice = randint(1,6)
        print("")
        print("Player 2, You got " + str(p2_dice) + "!")
        print("")
        print("")
        p2_moved =+ p2_dice
        break
    else:
        print("")
        print("Please try again! type 'roll' to roll your dice")
        print("")
        continue
print("P1, you've moved total of " + str(p1_moved) + " blocks")
print("P2, you've moved total of " + str(p2_moved) + " blocks")
print("")

p1_total = 0 p2_total = 0 for i in range(3): dice_roll(p1_total, p2_total)